Skip to content

Commit

Permalink
Release v2.13.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AidasK committed Oct 5, 2018
1 parent 348527d commit aadc5a7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
8 changes: 6 additions & 2 deletions dist/flow.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
* @license MIT
*/
(function(window, document, undefined) {'use strict';
if (!window || !document) {
console.warn('Flowjs needs window and document objects to work');
return;
}
// ie10+
var ie10plus = window.navigator.msPointerEnabled;
/**
Expand Down Expand Up @@ -1609,7 +1613,7 @@
* Library version
* @type {string}
*/
Flow.version = '2.13.0';
Flow.version = '2.13.1';

if ( typeof module === "object" && module && typeof module.exports === "object" ) {
// Expose Flow as module.exports in loaders that implement the Node
Expand All @@ -1632,4 +1636,4 @@
define( "flow", [], function () { return Flow; } );
}
}
})(window, document);
})(typeof window !== 'undefined' && window, typeof document !== 'undefined' && document);
Loading

0 comments on commit aadc5a7

Please sign in to comment.