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
/* | |
Deferred script loader | |
Loads non-essential scripts after document load to improve load performance | |
*/ | |
var DeferredLoader = (function () { | |
function downloadJS(script) { | |
var element = document.createElement("script"); | |
element.src = script; | |
document.body.appendChild(element); |
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
/** | |
* EASY-64 | |
* Drag-n-Drop images and get the base-64 encoded string | |
*/ | |
@import url(http://fonts.googleapis.com/css?family=Black+Ops+One); | |
html, body { | |
margin:0; | |
padding:0; | |
width: 100%; |