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
function( | |
a, //CSS selector | |
b //callback function | |
) { | |
return function( | |
e, // event | |
c, // (placeholder) | |
d // (placeholder) | |
) { | |
d = e.target; |
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 _hasOwnProperty = Object.prototype.hasOwnProperty; | |
if(!Element.prototype.matchesSelector) { | |
Element.prototype.matchesSelector = | |
Element.prototype.matches || | |
Element.prototype.webkitMatchesSelector || | |
Element.prototype.mozMatchesSelector || | |
Element.prototype.msMatchesSelector || | |
Element.prototype.oMatchesSelector || function(selector) { | |
if(!selector)return false; |
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
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
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
/** @license MIT License (c) copyright Egor Halimonenko ([email protected]) */ | |
// ==ClosureCompiler== | |
// @compilation_level ADVANCED_OPTIMIZATIONS | |
// @warning_level VERBOSE | |
// @jscomp_warning missingProperties | |
// @output_file_name a.js.querySelector.min.js | |
// @check_types | |
// ==/ClosureCompiler== |
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
<html> | |
<form> | |
<div id="test3"> | |
test1 : | |
<input id="test1" type="radio" name="test" checked /> | |
</div> | |
test 2: | |
<input type="radio" name="test" /> | |
</form> |
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
/* | |
demo :- http://jsfiddle.net/termi/pyFXW/ | |
Implements RadioNodeList :- http://www.whatwg.org/specs/web-apps/current-work/multipage/common-dom-interfaces.html#radionodelist | |
Implementation just adds `.value` as a property to `NodeList`. | |
Requires ES5 shim and ES5 shimmable browser. (Modern and IE8) | |
*/ | |
;(function () { |
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
function testForRealScopePreudoClassSupport() { | |
var scopeSupport = false | |
, tmp = document.createElement("b") | |
; | |
tmp.innerHTML = "<i>t</i>"; | |
try { | |
scopeSupport = tmp.querySelector(":scope>i"); | |
scopeSupport = scopeSupport && scopeSupport.innerHTML == "t"; |
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
void function(global, tmp) { | |
if("classList" in tmp) { | |
void function(_add, _remove, _Array_forEach_) { | |
this["add"] = function() { | |
_Array_forEach_.call(arguments, _add, this); | |
}; | |
this["remove"] = function() { | |
_Array_forEach_.call(arguments, _remove, this); | |
}; | |
this["toggle"] = function(token, forse) { |
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 | |
/** @type {RegExp} @const */ | |
RE__getElementsByClassName = /\s*(\S+)\s*/g | |
/** @type {string} @const */ | |
, STRING_FOR_RE__getElementsByClassName = '(?=(^|.*\\s)$1(\\s|$))' | |
/** @type {boolean} @const */ | |
, IS_IELT9 = !/\[native\s+code\]/i.test(document.getElementsByClass + "") | |
/** @type {RegExp} @const */ | |
, RE__querySelector__dottes = /\./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
void function(exports) { | |
var _browser_msie = window["eval"] && window["eval"]("/*@cc_on 1;@*/") && +((/msie (\d+)/i.exec(navigator.userAgent) || [])[1] || 0) || void 0 | |
, _document_documentElement = document.documentElement | |
, _document_body = document.body | |
, _append = function(obj, extention) { | |
for(var key in extention) |
OlderNewer