הבדלים בין גרסאות בדף "מדיה ויקי:Common.js"
| שורה 3: | שורה 3: | ||
if(!$t.length) | if(!$t.length) | ||
return; | 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" /> (הבהרות תרגום) <input type="checkbox" class="hamore-squares-cb" /> [השלמת ציטוטים] <input type="checkbox" class="hamore-sourced-hebrews-cb" /> צביעת עברית במקור <input type="checkbox" class="hamore-hebrew-cb" /> תרגום עברי <input type="checkbox" class="hamore-arabic-cb" /> מקור ערבי</div>'); | + | $("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" /> (הבהרות תרגום) <input type="checkbox" class="hamore-squares-cb" /> [השלמת ציטוטים] <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(); | $(".hamore-toolbox input").click(); | ||
| שורה 18: | שורה 18: | ||
$(".hamore-squares-cb").click(function() { | $(".hamore-squares-cb").click(function() { | ||
$t.toggleClass("hamore-hide-squares"); | $t.toggleClass("hamore-hide-squares"); | ||
| + | }); | ||
| + | $(".hamore-indexes-cb").click(function() { | ||
| + | $t.toggleClass("hamore-hide-indexes"); | ||
}); | }); | ||
$(".hamore-sourced-hebrews-cb").click(function() { | $(".hamore-sourced-hebrews-cb").click(function() { | ||
גרסה מ־10:37, 14 בספטמבר 2018
$(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" /> (הבהרות תרגום) <input type="checkbox" class="hamore-squares-cb" /> [השלמת ציטוטים] <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();
$(".hamore-sources-cb").click(function() {
$t.toggleClass("hamore-hide-sources");
});
$(".hamore-terms-cb").click(function() {
$t.toggleClass("hamore-hide-terms");
});
$(".hamore-circles-cb").click(function() {
$t.toggleClass("hamore-hide-circles");
});
$(".hamore-squares-cb").click(function() {
$t.toggleClass("hamore-hide-squares");
});
$(".hamore-indexes-cb").click(function() {
$t.toggleClass("hamore-hide-indexes");
});
$(".hamore-sourced-hebrews-cb").click(function() {
$t.toggleClass("hamore-hide-sourced-hebrews");
});
$(".hamore-hebrew-cb").click(function() {
$t.toggleClass("hamore-hide-hebrew");
});
$(".hamore-arabic-cb").click(function() {
$t.toggleClass("hamore-hide-arabic");
});
});