misp-ui-library-test 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -7,15 +7,7 @@
|
|
|
7
7
|
* @module utils/popper/popper
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
|
-
;(function (
|
|
11
|
-
if (typeof define === 'function' && define.amd) {
|
|
12
|
-
define(factory)
|
|
13
|
-
} else if (typeof module === 'object' && module.exports) {
|
|
14
|
-
module.exports = factory()
|
|
15
|
-
} else {
|
|
16
|
-
root.Popper = factory()
|
|
17
|
-
}
|
|
18
|
-
})(this, function () {
|
|
10
|
+
;(function () {
|
|
19
11
|
'use strict'
|
|
20
12
|
|
|
21
13
|
var root = window
|
|
@@ -1129,4 +1121,5 @@
|
|
|
1129
1121
|
}
|
|
1130
1122
|
|
|
1131
1123
|
return Popper
|
|
1132
|
-
})
|
|
1124
|
+
})()
|
|
1125
|
+
module.exports = Popper
|