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 348527d commit aadc5a7Copy full SHA for aadc5a7
3 files changed
dist/flow.js
@@ -2,6 +2,10 @@
2
* @license MIT
3
*/
4
(function(window, document, undefined) {'use strict';
5
+ if (!window || !document) {
6
+ console.warn('Flowjs needs window and document objects to work');
7
+ return;
8
+ }
9
// ie10+
10
var ie10plus = window.navigator.msPointerEnabled;
11
/**
@@ -1609,7 +1613,7 @@
1609
1613
* Library version
1610
1614
* @type {string}
1611
1615
1612
- Flow.version = '2.13.0';
1616
+ Flow.version = '2.13.1';
1617
1618
if ( typeof module === "object" && module && typeof module.exports === "object" ) {
1619
// Expose Flow as module.exports in loaders that implement the Node
@@ -1632,4 +1636,4 @@
1632
1636
define( "flow", [], function () { return Flow; } );
1633
1637
}
1634
1638
1635
-})(window, document);
1639
+})(typeof window !== 'undefined' && window, typeof document !== 'undefined' && document);
0 commit comments