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
/* | |
##Device = Desktops | |
##Screen = 1281px to higher resolution desktops | |
*/ | |
@media (min-width: 1281px) { | |
//CSS | |
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
/* Change all src urls loaded from external urls | |
* to dataUrls stored on the local storage. | |
*/ | |
var changeAllSrcToDataUrl = function() { | |
// Get all images on page or element to render | |
$("img").each(function() { | |
var image = this; | |
// If it last image, proceed to canvas rendering | |
var isLast = this === $("img")[$("img").length - 1] || false; |