This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var DataSet = (function () { | |
"use strict"; | |
var E, toCamelCase, getter, setter; | |
E = document.createElement("div"); | |
if (E.dataset && !E.hasOwnProperty("dataset")) { | |
toCamelCase = (function () { | |
var re = /-([a-z])/g; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Bind = (function () { | |
"use strict"; | |
var A, F, ret; | |
A = []; | |
F = function () { return undefined; }; | |
if (F.bind && !F.hasOwnProperty("bind")) { | |
ret = function (func, thisArg /*, args */) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Once = (function () { | |
"use strict"; | |
var A, F, func; | |
A = []; | |
F = function () { return undefined; }; | |
func = function (f) { | |
var ret, ran, retValue; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Clone = (function () { | |
"use strict"; | |
var O, toString, | |
objType, arrType, | |
isObject, isArray, | |
each, iterator; | |
O = {}; | |
toString = function (p) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Trim = (function () { | |
"use strict"; | |
var S, both, left, right; | |
S = ""; | |
if (S.trim && !S.hasOwnProperty("trim")) { | |
both = function (str) { | |
return S.trim.call(str); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Format = (function () { | |
"use strict"; | |
var refToString, toString, re, slice, ret; | |
refToString = {}.toString; | |
toString = function (p) { | |
return refToString.call(p); | |
}; | |
re = /\{(\d+)\}/g; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RegExp.quote = (function () { | |
"use strict"; | |
var ret, re; | |
re = /([.?*+^$[\]\\(){}|-])/g; | |
ret = function (str) { | |
return ("" + str).replace(re, "\\$1"); | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var NextElementSibling = (function () { | |
"use strict"; | |
var E, supportsNativeNext, is, traverseAcross, ret; | |
E = document.createElement("div"); | |
supportsNativeNext = ("nextElementSibling" in E && !E.hasOwnProperty("nextElementSibling")); | |
is = (function () { | |
var prefixes, i, j, cur, matchProp, matchFunc; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var animate = (function () { | |
"use strict"; | |
var ret; | |
ret = function (elem, style, unit, from, to, time) { | |
var start, timer; | |
if (!elem) { | |
return; | |
} |
OlderNewer