Thanks to visit codestin.com Credit goes to github.com
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 6ad40cd commit b9129fbCopy full SHA for b9129fb
gridstack.js
@@ -1,4 +1,18 @@
1
-(function (scope, _) {
+// 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;
16
17
var Utils = {
18
is_intercepted: function (a, b) {
@@ -712,4 +726,5 @@
712
726
});
713
727
};
714
728
715
-})(window, _);
729
+ return scope.GridStackUI;
730
+});
0 commit comments