update gridstack.js
This commit is contained in:
parent
6ad40cd657
commit
b9129fb43e
1 changed files with 17 additions and 2 deletions
19
gridstack.js
19
gridstack.js
|
|
@ -1,4 +1,18 @@
|
|||
(function (scope, _) {
|
||||
// gridstack.js 0.2.3-dev
|
||||
// http://troolee.github.io/gridstack.js/
|
||||
// (c) 2014-2015 Pavel Reznikov
|
||||
// gridstack.js may be freely distributed under the MIT license.
|
||||
|
||||
(function (factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
define(['jquery', 'underscore'], factory);
|
||||
}
|
||||
else {
|
||||
factory(jQuery, _);
|
||||
}
|
||||
})(function ($, _) {
|
||||
|
||||
var scope = window;
|
||||
|
||||
var Utils = {
|
||||
is_intercepted: function (a, b) {
|
||||
|
|
@ -712,4 +726,5 @@
|
|||
});
|
||||
};
|
||||
|
||||
})(window, _);
|
||||
return scope.GridStackUI;
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue