ember.js - Ember not loading data in Chrome - DS.RESTAdapter has no method extend -


i calling

hyena.store = ds.store.extend({   revision: 11,   adapter: ds.restadapter.extend() }); 

it doesn't work chrome browser heap of errors uncaught typeerror: cannot call method 'extend' of undefined , ds.restadapter has no method extend. have idea why? works fine in safari , firefox, loads 1 in 10 times in chrome.

edit: adding 1 of error outputs requested:

uncaught typeerror: object [object object] has no method 'setup' ember.js?body=1:29481 ember.application.ember.namespace.extend.setupeventdispatcher ember.js?body=1:29481 ember.application.ember.namespace.extend.didbecomeready ember.js?body=1:29453 deferredactionqueues.flush ember.js?body=1:4901 backburner.end ember.js?body=1:4591 backburner.run ember.js?body=1:4630 ember.run ember.js?body=1:5112 (anonymous function) ember.js?body=1:29201 fire jquery.js?body=1:3065 self.firewith jquery.js?body=1:3177 jquery.extend.ready jquery.js?body=1:434 completed jquery.js?body=1:105 

the solution discovered in part @ahaurw01 - mentioning reproduce in chrome canary lead me check chrome version, (for reason unknown) had 'dev' affixed version number. re-downloaded chrome website, removing version, , fixed problem.

still concern future releases of chrome, @ least it's working now.


Comments

Popular posts from this blog

c++ - CryptStringToBinary API behavior -

c++ - Correct method for redrawing a layered window -

java.util.scanner - How to read and add only numbers to array from a text file -