Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b9129fb

Browse files
committed
update gridstack.js
1 parent 6ad40cd commit b9129fb

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

gridstack.js

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
1-
(function (scope, _) {
1+
// gridstack.js 0.2.3-dev
2+
// http://troolee.github.io/gridstack.js/
3+
// (c) 2014-2015 Pavel Reznikov
4+
// gridstack.js may be freely distributed under the MIT license.
5+
6+
(function (factory) {
7+
if (typeof define === 'function' && define.amd) {
8+
define(['jquery', 'underscore'], factory);
9+
}
10+
else {
11+
factory(jQuery, _);
12+
}
13+
})(function ($, _) {
14+
15+
var scope = window;
216

317
var Utils = {
418
is_intercepted: function (a, b) {
@@ -712,4 +726,5 @@
712726
});
713727
};
714728

715-
})(window, _);
729+
return scope.GridStackUI;
730+
});

0 commit comments

Comments
 (0)