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 not = function(fn){ return function(){ return !fn.apply(this, arguments); }; }; | |
| var nullOrUndefined = function(e){ return this[e] == null; }; | |
| var notNullOrUndefined = not(nullOrUndefined); | |
| var existsIn = function(e){ return this.indexOf(e) != -1; }; | |
| var doesntExistIn = not(existsIn); | |
| var merge = function(dest, source){ | |
| var validKeys = Object.keys(source).filter(notNullOrUndefined, source); |
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 slice = Array.prototype.slice; | |
| var call = Function.prototype.call; | |
| var toArray = function () { return call.apply(slice, arguments); } | |
| // Usage: | |
| toArray(arguments); //=> make an array from all arguments | |
| toArray(arguments, 1, 3); //=> make an array from arguments[1] to arguments[2] |
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
| // Script# Core Runtime | |
| // More information at http://projects.nikhilk.net/ScriptSharp | |
| // | |
| window.isUndefined=function(o){return(o===undefined);}; | |
| window.isNull=function(o){return(o===null);}; | |
| window.isNullOrUndefined=function(o){return(o===null)||(o===undefined);}; | |
| window.__scriptsharp='0.5.5.0'; | |
| document.getElementsBySelector=function(cssSelector,root){ | |
| var all=root?root.getElementsByTagName('*'):document.getElementsByTagName('*'); | |
| var matches=[]; |
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 Approx = { | |
| fastlog2: (function () { | |
| var a = new ArrayBuffer(4), | |
| i = new Int32Array(a), | |
| f = new Float32Array(a); | |
| return function fasterLog2 (number) { | |
| f[0] = number; | |
| var t = i[0] * 1.1920928955078125e-7; | |
| return t - 126.94269504; |
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 later = Function.bind.bind(window.setTimeout, window); | |
| // Usage | |
| element.addEventListener('click', later(foo, 1000)); | |
| // On click, `foo` will be executed after 1 second with the usual event parameters passed along |
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 x = event.pageX - screen.offsetLeft; | |
| var y = event.pageY - screen.offsetTop; | |
| function distance(x, y) { | |
| return Math.sqrt(x * x + y * y); | |
| } | |
| var d = distance(x - targetX, y - targetY); | |
| if (d <= tolerance) { |
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 foo(){var str = $('.highlight').text();$("#inputfield").val(str);str=str.split('');str.push(' ');bar(str);} function bar(str){var v=str.shift().charCodeAt(0);$("#inputfield").trigger($.Event( "keyup", {keyCode: v, charCode: v,which: v}));setTimeout(str.length?bar:foo,10+((Math.random()*70)|0),str);} foo(); |
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
| window.requestAnimFrame = (function(global) { | |
| var callbackList = [], | |
| timer, | |
| nextTimeSlot = 0; | |
| function processCallbacks () { | |
| var localCBList = callbackList, | |
| now = +(new Date), cb; | |
| callbackList = []; |
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 (root, factory) { | |
| if (typeof exports === 'object') { | |
| module.exports = factory(require('masala')); | |
| } else if (typeof define === 'function' && define.amd) { | |
| define(['masala'], factory); | |
| } else { | |
| root.fitText = factory(root.masala); | |
| } | |
| }(this, function (masala) { | |
| var rectEnum = { |
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
| window.addEventListener('load', getRequestForEditor); | |
| var events = ['change', 'contextmenu', 'select', 'keypress', 'dblclick', 'click', 'mousedown', 'mouseup', 'mousewheel', 'scroll']; | |
| function bindEvent (eventName) { | |
| this.addEventListener(eventName, getRequestForEditor); | |
| } | |
| events.forEach(bindEvent, document.getElementById("selContentType")); | |
| events.forEach(bindEvent, document.getElementById("selTheme")); |