소스 검색

Add overboard support to image-hover functionality.

pull/89/head
Benjamin Southall 7 년 전
부모
커밋
21e7520caa
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. +5
    -1
      js/image-hover.js

+ 5
- 1
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');
}


불러오는 중...
취소
저장