rebuild docs

This commit is contained in:
atomiks
2018-10-05 09:23:22 +10:00
parent a564514b74
commit d5f0644d7a
6 changed files with 594 additions and 554 deletions

View File

@@ -1,7 +1,9 @@
;(function(global, factory) {
typeof exports === 'object' && typeof module !== 'undefined'
? (module.exports = factory())
: typeof define === 'function' && define.amd ? define(factory) : (global.Jump = factory())
: typeof define === 'function' && define.amd
? define(factory)
: (global.Jump = factory())
})(this, function() {
'use strict'
@@ -12,9 +14,9 @@
var easeInOutQuad = function easeInOutQuad(t, b, c, d) {
t /= d / 2
if (t < 1) return c / 2 * t * t + b
if (t < 1) return (c / 2) * t * t + b
t--
return -c / 2 * (t * (t - 2) - 1) + b
return (-c / 2) * (t * (t - 2) - 1) + b
}
var _typeof =