מדיה ויקי:Common.js
הערה: לאחר השמירה, ייתכן שיהיה צורך לנקות את זיכרון המטמון (cache) של הדפדפן כדי להבחין בשינויים.
- פיירפוקס / ספארי: להחזיק את המקש Shift בעת לחיצה על טעינה מחדש (Reload), או ללחוץ על צירוף המקשים Ctrl-F5 או Ctrl-R (במחשב מק: ⌘-R).
- גוגל כרום: ללחוץ על צירוף המקשים Ctrl-Shift-R (במחשב מק: ⌘-Shift-R).
- אינטרנט אקספלורר: להחזיק את המקש Ctrl בעת לחיצה על רענן (Refresh), או ללחוץ על צירוף המקשים Ctrl-F5.
- אופרה: לפתוח תפריט ← הגדרות (במחשב מק: Opera ← העדפות) ואז ללחוץ על פרטיות ואבטחה ← מחק היסטוריית גלישה ← Cached images and files.
$(function() {
var $t = $("table.hamore");
if(!$t.length)
return;
$("h1").before('<div class="hamore-toolbox"><input type="checkbox" class="hamore-sources-cb" /> מקורות <input type="checkbox" class="hamore-terms-cb" /> מונחים <input type="checkbox" class="hamore-circles-cb" disabled="disabled" /> (הבהרות תרגום) <input type="checkbox" class="hamore-squares-cb" disabled="disabled" /> [השלמת ציטוטים] <input type="checkbox" class="hamore-indexes-cb" /> מספור פנימי <input type="checkbox" class="hamore-sourced-hebrews-cb" /> צביעת עברית במקור <input type="checkbox" class="hamore-hebrew-cb" /> תרגום עברי <input type="checkbox" class="hamore-arabic-cb" /> מקור ערבי</div>');
$(".hamore-toolbox input").click();
if (!localStorage) localStorage = {};
$(".hamore-sources-cb").click(function() {
$t.toggleClass("hamore-hide-sources");
localStorage['hamore-sources-cb'] = this.checked ? "1" : "0";
});
$(".hamore-terms-cb").click(function() {
$t.toggleClass("hamore-hide-terms");
localStorage['hamore-terms-cb'] = this.checked ? "1" : "0";
});
$(".hamore-circles-cb").click(function() {
$t.toggleClass("hamore-hide-circles");
localStorage['hamore-circles-cb'] = this.checked ? "1" : "0";
});
$(".hamore-squares-cb").click(function() {
$t.toggleClass("hamore-hide-squares");
localStorage['hamore-squares-cb'] = this.checked ? "1" : "0";
});
$(".hamore-indexes-cb").click(function() {
$t.toggleClass("hamore-hide-indexes");
localStorage['hamore-indexes-cb'] = this.checked ? "1" : "0";
});
$(".hamore-sourced-hebrews-cb").click(function() {
$t.toggleClass("hamore-hide-sourced-hebrews");
localStorage['hamore-sourced-hebrews-cb'] = this.checked ? "1" : "0";
});
$(".hamore-hebrew-cb").click(function() {
$t.toggleClass("hamore-hide-hebrew");
localStorage['hamore-hebrew-cb'] = this.checked ? "1" : "0";
});
$(".hamore-arabic-cb").click(function() {
$t.toggleClass("hamore-hide-arabic");
localStorage['hamore-arabic-cb'] = this.checked ? "1" : "0";
});
if(localStorage['hamore-sources-cb'] === "0")
$(".hamore-sources-cb").click();
if(localStorage['hamore-terms-cb'] === "0")
$(".hamore-terms-cb").click();
if(localStorage['hamore-circles-cb'] === "0")
$(".hamore-circles-cb").click();
if(localStorage['hamore-squares-cb'] === "0")
$(".hamore-squares-cb").click();
if(localStorage['hamore-indexes-cb'] === "0")
$(".hamore-indexes-cb").click();
if(localStorage['hamore-sourced-hebrews-cb'] === "0")
$(".hamore-sourced-hebrews-cb").click();
if(localStorage['hamore-hebrew-cb'] === "0")
$(".hamore-hebrew-cb").click();
if(localStorage['hamore-arabic-cb'] === "0")
$(".hamore-arabic-cb").click();
});