Browse Source

Add overboard support to image-hover functionality.

pull/40/head
Benjamin Southall 7 years ago
parent
commit
21e7520caa
  1. 6
      js/image-hover.js

6
js/image-hover.js

@ -5,7 +5,7 @@
* Thanks Pashe for using WTFPL.
*/
if (active_page === "catalog" || active_page === "thread" || active_page === "index") {
if (active_page === "catalog" || active_page === "thread" || active_page === "index" || active_page === "ukko") {
$(document).on('ready', function(){
if (window.Options && Options.get_tab('general')) {
@ -59,6 +59,10 @@ function isOnThread() {
return window.active_page === "thread";
}
function isOnUkko() {
return window.active_page === "ukko";
}
function getSetting(key) {
return (localStorage[key] == 'true');
}

Loading…
Cancel
Save