- Modules
- ember-data
- Namespaces
- DS
- Ember.Date
- Classes
- ContainerInstanceCache
- DS.AbortError
- DS.ActiveModelAdapter
- DS.ActiveModelSerializer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export function initialize(/* container, application */) { | |
| // IE9 doesn't define a console object until the development tools are opened. | |
| // This causes hard-to-debug JavaScript errors for things like `console.log`. | |
| window.console = window.console || {}; | |
| window.console.log = window.console.log || function () {}; | |
| window.console.info = window.console.info || function () {}; | |
| window.console.warn = window.console.warn || function () {}; | |
| window.console.error = window.console.error || function () {}; | |
| // We also ensure that if we call newer console functions it doesn't break | |
| // older browsers. |
- Put
reporter.jsintests/helpers/reporter.js - Change
tests/test-helper.jsto look like the attached - Put
test-container-styles.cssinvendor/ember-cli-mochato override the default - Stop your server and restart (it doesn't watch
vendor/by default)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var get = Ember.get, set = Ember.set, computed = Ember.computed, defineProperty = Ember.defineProperty, observer = Ember.observer; | |
| Ember.Select.reopen({ | |
| optionDisabledPath: null | |
| }); | |
| Ember.SelectOption.reopen({ | |
| attributeBindings: ['disabled'], | |
| init: function() { |
NewerOlder