0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-13 22:41:32 -05:00
ghost/core/client/app/views/settings/navigation.js

37 lines
1 KiB
JavaScript
Raw Normal View History

2015-02-12 21:22:32 -07:00
import Ember from 'ember';
import BaseView from 'ghost/views/settings/content-base';
var SettingsNavigationView = BaseView.extend({
didInsertElement: function () {
var navContainer = Ember.$('.js-gh-blognav'),
navElements = '.gh-blognav-item:not(.gh-blognav-item:last-child)',
2015-02-25 17:20:42 +00:00
self = this;
navContainer.sortable({
handle: '.gh-blognav-grab',
items: navElements,
2015-02-25 17:20:42 +00:00
start: function (event, ui) {
Ember.run(function () {
ui.item.data('start-index', ui.item.index());
});
},
update: function (event, ui) {
Ember.run(function () {
self.get('controller').send('moveItem', ui.item.data('start-index'), ui.item.index());
ui.item.remove();
});
}
});
},
willDestroyElement: function () {
Ember.$('.js-gh-blognav').sortable('destroy');
}
});
export default SettingsNavigationView;