This website requires JavaScript.
Explore
Help
Sign In
TryGhost
/
Ghost
Watch
1
Star
0
Fork
0
You've already forked Ghost
mirror of
https://github.com/TryGhost/Ghost.git
synced
2024-12-20 09:22:49 +03:00
Code
Issues
Projects
Releases
Wiki
Activity
48d61af3a8
Ghost
/
ghost
/
admin
/
app
/
utils
/
text-field.js
6 lines
94 B
JavaScript
Raw
Normal View
History
Unescape
Escape
Ember init, bower deps, es6 modules
2015-02-13 07:22:32 +03:00
import
Ember
from
'ember'
;
Standardize on var-less `export default` across ember app no issue - drops the `var Foo = Ember.Thing.extend({}); export default Foo;` syntax in favour of exporting directly, eg: `export default Ember.Thing.extend({})` - discussion on this change [here](https://github.com/TryGhost/Ghost/pull/5340#issuecomment-105828423) and [here](https://github.com/TryGhost/Ghost/pull/5694#discussion-diff-37511606)
2015-08-19 14:55:40 +03:00
Ember-cli, Ember, & Ember Data 1.13.x upgrades closes #5630 - upgrade ember-cli to latest version - upgrade ember to latest 1.13.x release - upgrade ember data to latest 1.13.x release - update custom adapters and serialisers for new internal JSON-API compatible formats [(docs)][1] - update all store queries to use new standardised query methods [(docs)][2] - add ember-data-filter addon ready for store.filter removal in ember-data 2.0 [(docs)][3] - remove use of prototype extensions for computed properties and observers - consolidate pagination into a single route mixin and simplify configuration [1]: http://emberjs.com/blog/2015/06/18/ember-data-1-13-released.html#toc_transition-to-the-new-jsonserializer-and-restserializer-apis [2]: http://emberjs.com/blog/2015/06/18/ember-data-1-13-released.html#toc_simplified-find-methods [3]: http://emberjs.com/blog/2015/06/18/ember-data-1-13-released.html#toc_ds-store-filter-moved-to-an-addon
2015-09-03 14:06:50 +03:00
Ember
.
TextField
.
reopen
(
{
attributeBindings
:
[
'autofocus'
]
}
)
;
Reference in New Issue
Copy Permalink