Skip to content

Commit

Permalink
Build Leap.js
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Mar 16, 2021
1 parent ba7af7d commit f02c5bd
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
23 changes: 13 additions & 10 deletions leap-1.1.0.js
Original file line number Diff line number Diff line change
Expand Up @@ -11853,16 +11853,19 @@ module.exports = function () {
};

},{}],34:[function(require,module,exports){
if (typeof(window) !== 'undefined' && typeof(window.requestAnimationFrame) !== 'function') {
window.requestAnimationFrame = (
window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
window.oRequestAnimationFrame ||
window.msRequestAnimationFrame ||
function(callback) { setTimeout(callback, 1000 / 60); }
);
if (typeof (window) !== 'undefined'){
if (typeof (window.requestAnimationFrame) !== 'function') {
window.requestAnimationFrame = (
window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
window.oRequestAnimationFrame ||
window.msRequestAnimationFrame ||
function (callback) { setTimeout(callback, 1000 / 60); }
);
}
window.Leap = require("../lib/index");
} else {
Leap = require("../lib/index");
}

Leap = require("../lib/index");

},{"../lib/index":11}]},{},[34]);
2 changes: 1 addition & 1 deletion leap-1.1.0.min.js

Large diffs are not rendered by default.

0 comments on commit f02c5bd

Please sign in to comment.