|
@ -42,6 +42,19 @@ function downloadURI(uri, name){ |
|
|
link.click(); |
|
|
link.click(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//night mode
|
|
|
|
|
|
function nightMode(){ |
|
|
|
|
|
if( isNightTime() ){ |
|
|
|
|
|
var container = jQuery('#container'); |
|
|
|
|
|
container.addClass("night"); |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
function isNightTime(){ |
|
|
|
|
|
return true; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
//init everything
|
|
|
//init everything
|
|
|
jQuery(document).ready(function() { |
|
|
jQuery(document).ready(function() { |
|
|
|
|
|
|
|
@ -49,6 +62,7 @@ jQuery(document).ready(function() { |
|
|
cleanWakeUp(); |
|
|
cleanWakeUp(); |
|
|
currentVideo = setupVideoObject(); |
|
|
currentVideo = setupVideoObject(); |
|
|
setVideoListener(); |
|
|
setVideoListener(); |
|
|
|
|
|
nightMode(); |
|
|
console.log("9gag Mod Successfully Loaded!"); |
|
|
console.log("9gag Mod Successfully Loaded!"); |
|
|
|
|
|
|
|
|
// hash = window.location.hash.substring(1);
|
|
|
// hash = window.location.hash.substring(1);
|
|
|