This file contains 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 type="text/javascript"> | |
(function() { | |
document.title = ''; | |
function getNow() { | |
return ( Math.round( performance.now() / 10 ) / 100 ); | |
} | |
document.addEventListener( 'DOMContentLoaded', function() { | |
document.title = 'dm:' + getNow(); | |
}); |
This file contains 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 type="text/javascript"> | |
(function() { | |
'use strict'; | |
/** | |
* hook method to be executed as soon as shortpoint | |
* is available in the page | |
*/ | |
function initHook() { |
This file contains 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 type="text/javascript"> | |
(function() { | |
'use strict'; | |
/** | |
* hook method to be executed as soon as shortpoint | |
* is available in the page | |
*/ | |
function initHook() { |
This file contains 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
// open http://requirebin.com/, paste the following snippet | |
// and play with the following variable to see the output in action | |
var cssColorManipulation = 'color( #7A256D s(+ 5%) l(+ 43) )'; | |
var color = require('css-color-function'); | |
var updatedColor = color.convert( cssColorManipulation ); | |
console.clear(); | |
console.log( updatedColor ); | |
document.body.style.backgroundColor = updatedColor; |
This file contains 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() { | |
'use strict'; | |
/** | |
* hook method to be executed as soon as shortpoint | |
* is available in the page | |
*/ | |
function initHook() { | |
This file contains 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
/** | |
* knockout observable subscriber that will get triggered only once at most | |
* | |
* @param {fn} handler | |
* @param {object} [optional] context | |
*/ | |
ko.observable.fn.subscribeOnce = function( handler, context ) { | |
var subscribtion = this.subscribe(function() { | |
handler.apply( this, arguments ); |
This file contains 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
/** | |
* polyfill `getComputedStyle` in IE | |
*/ | |
window.getComputedStyle = window.getComputedStyle || function( element ) { | |
return element.currentStyle; | |
} | |
/** | |
* detect RTL layout |
This file contains 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
// ---- | |
// Sass (v3.4.12) | |
// Compass (v1.0.3) | |
// ---- | |
// rtl variables | |
$bi-app-left : right; | |
$bi-app-right : left; | |
$bi-app-direction : rtl; | |
$bi-app-invert-direction: ltr; |
This file contains 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
/** | |
* polyfilling console.time & timeEnd | |
* on IE | |
*/ | |
(function( console ) { | |
// cache to hold running timers | |
console._timers = {}; |
This file contains 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
/** | |
* node js module to add `@charset "utf-8"` to all | |
* sass files in the current directory | |
* ----------------------------------- | |
* sovles this bug: | |
* https://github.com/sass/sass/issues/1037 | |
* https://github.com/Compass/compass/issues/205 | |
*/ | |
var fs = require( 'fs' ); |