Fix incorrect insertion order for containers
This commit is contained in:
@ -232,12 +232,9 @@ define([
|
|||||||
_.extend(this, this._buildRegions(this.regions));
|
_.extend(this, this._buildRegions(this.regions));
|
||||||
},
|
},
|
||||||
getDropFunc: function() {
|
getDropFunc: function() {
|
||||||
var that = this;
|
|
||||||
return function() {
|
return function() {
|
||||||
var newModel = that.model.clone();
|
return this.model.clone();
|
||||||
that.model.destroy();
|
}.bind(this);
|
||||||
return newModel;
|
|
||||||
};
|
|
||||||
},
|
},
|
||||||
showBlock: function() {
|
showBlock: function() {
|
||||||
if (this._isFirstRender) {
|
if (this._isFirstRender) {
|
||||||
|
Reference in New Issue
Block a user