We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc571d8 commit 816071aCopy full SHA for 816071a
src/gridstack.js
@@ -812,11 +812,13 @@
812
GridStack.prototype.disable = function() {
813
this.movable(this.container.children('.' + this.opts.item_class), false);
814
this.resizable(this.container.children('.' + this.opts.item_class), false);
815
+ this.container.trigger('disable');
816
};
817
818
GridStack.prototype.enable = function() {
819
this.movable(this.container.children('.' + this.opts.item_class), true);
820
this.resizable(this.container.children('.' + this.opts.item_class), true);
821
+ this.container.trigger('enable');
822
823
824
GridStack.prototype.locked = function(el, val) {
0 commit comments