mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 10:50:21 +08:00
Do fix positions upon opening dialog
This commit is contained in:
parent
24991c4016
commit
2fa801c014
1 changed files with 6 additions and 1 deletions
|
@ -1,13 +1,18 @@
|
||||||
import ModalFunctionality from 'discourse/mixins/modal-functionality';
|
import ModalFunctionality from 'discourse/mixins/modal-functionality';
|
||||||
const BufferedProxy = window.BufferedProxy; // import BufferedProxy from 'ember-buffered-proxy/proxy';
|
const BufferedProxy = window.BufferedProxy; // import BufferedProxy from 'ember-buffered-proxy/proxy';
|
||||||
import { popupAjaxError } from 'discourse/lib/ajax-error';
|
import { popupAjaxError } from 'discourse/lib/ajax-error';
|
||||||
import computed from "ember-addons/ember-computed-decorators";
|
import { on, default as computed } from "ember-addons/ember-computed-decorators";
|
||||||
import Ember from 'ember';
|
import Ember from 'ember';
|
||||||
|
|
||||||
const SortableArrayProxy = Ember.ArrayProxy.extend(Ember.SortableMixin);
|
const SortableArrayProxy = Ember.ArrayProxy.extend(Ember.SortableMixin);
|
||||||
|
|
||||||
export default Ember.Controller.extend(ModalFunctionality, Ember.Evented, {
|
export default Ember.Controller.extend(ModalFunctionality, Ember.Evented, {
|
||||||
|
|
||||||
|
@on('init')
|
||||||
|
_fixOrder() {
|
||||||
|
this.send('fixIndices');
|
||||||
|
},
|
||||||
|
|
||||||
@computed("site.categories")
|
@computed("site.categories")
|
||||||
categoriesBuffered(categories) {
|
categoriesBuffered(categories) {
|
||||||
const bufProxy = Ember.ObjectProxy.extend(BufferedProxy);
|
const bufProxy = Ember.ObjectProxy.extend(BufferedProxy);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue