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() { | |
"use strict"; | |
var global = this; | |
//Mini alternative https://gist.github.com/2428561 | |
//Uses | |
//https://gist.github.com/1384398 | |
//https://gist.github.com/1235332 |
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
//////////////////////////////////////////////////////////////////////////////// | |
// Author: Thaddee Tyl 2012. | |
// The following work is under CC0. | |
void function() { | |
// Hook the polyfill. | |
Element.prototype._scrollIntoView = function scrollIntoView(options) { | |
if( !this.ownerDocument )return; | |
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() { | |
var _Array_slice_ = Array.prototype['slice']; | |
var _Array_splice_ = Array.prototype.splice; | |
if( Function.prototype.bind === void 0 ) Function.prototype.bind = function (context) { | |
var args = _Array_slice_.call(arguments, 1), self = this; | |
return function (){ return self.apply(context, args.concat(_Array_slice_.call(arguments, 0))); }; | |
}; | |
function makeArray(l) { |
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() { | |
var global = this | |
/** @const */ | |
, _Array_slice = Array.prototype.slice | |
/** @const */ | |
, _Function_apply = Function.prototype.apply |
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() {//closure | |
var global = this | |
, _initKeyboardEvent_type = (function( e ) { | |
try { | |
e.initKeyboardEvent( | |
"keyup" // in DOMString typeArg | |
, false // in boolean canBubbleArg | |
, false // in boolean cancelableArg | |
, global // in views::AbstractView viewArg |
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
#!/usr/bin/env node | |
if (process.argv.length < 3) { | |
console.error('No enough parameters'); | |
process.exit(); | |
} | |
const fs = require('fs') | |
, path = require('path') | |
; |
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 getScrollX | |
, getScrollX | |
, _document_documentElement = document.documentElement | |
; | |
document.compatMode === "CSS1Compat" ? | |
((_getScrollX = function(){return _document_documentElement.scrollLeft}), (_getScrollY = function(){return _document_documentElement.scrollTop})) | |
: | |
((_getScrollX = function(){return document.body.scrollTop}), (_getScrollY = function(){return document.body.scrollLeft})) | |
; |
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) |
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(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) { |