diff --git a/pn-site/js/titledate.js b/pn-site/js/titledate.js index 91976d88..e477f7d8 100644 --- a/pn-site/js/titledate.js +++ b/pn-site/js/titledate.js @@ -1,57 +1,57 @@ -$(document).ready(function(){ - - $("#controls input").click( - function() { - if (this.checked) { - $("."+this.name).show(); - if (this.name == "transcription") { - $(".image").css('width','50%'); - $(".translation").css('width','50%'); - } - } else { - $("."+this.name).hide(); - if (this.name == "transcription") { - $(".image").css('width','100%'); - $(".translation").css('width','100%'); - } - } - } - ); - - var showEditHistory = function(){ - - hideAllHistory(); - $("#edit-history-list").show("blind", 250); - $("#edit-history").unbind("click"); - $("#edit-history").bind("click", hideEditHistory); - - } - - var hideEditHistory = function(){ - - if(!($("#edit-history-list").css("display") == "none")) {$("#edit-history-list").hide("blind", 250); } - $("#edit-history").unbind("click"); - $("#edit-history").bind("click", showEditHistory); - } - - var showAllHistory = function(){ - - hideEditHistory(); - $("#all-history-list").show("blind", 250); - $("#all-history").unbind("click"); - $("#all-history").bind("click", hideAllHistory); - - } - - var hideAllHistory = function(){ - - if(!($("#all-history-list").css("display") == "none")) { $("#all-history-list").hide("blind", 250); } - $("#all-history").unbind("click"); - $("#all-history").bind("click", showAllHistory); - - } - - $("#edit-history").bind("click", showEditHistory); - $("#all-history").bind("click", showAllHistory); +$(document).ready(function () { + + $("#controls input").on('click', (e) => { + const target = e.currentTarget; + if (target.checked) { + $("." + target.name).show(); + if (target.name == "transcription") { + $(".image").css('width', '50%'); + $(".translation").css('width', '50%'); + } + } else { + $("." + target.name).hide(); + if (target.name == "transcription") { + $(".image").css('width', '100%'); + $(".translation").css('width', '100%'); + } + } + } + ); + + var showEditHistory = function () { + + hideAllHistory(); + $("#edit-history-list").show("blind", 250); + $("#edit-history").off("click"); + $("#edit-history").on("click", hideEditHistory); + + } + + var hideEditHistory = function () { + + if (!($("#edit-history-list").css("display") == "none")) { $("#edit-history-list").hide("blind", 250); } + $("#edit-history").off("click"); + $("#edit-history").on("click", showEditHistory); + } + + var showAllHistory = function () { + + hideEditHistory(); + $("#all-history-list").show("blind", 250); + $("#all-history").off("click"); + $("#all-history").on("click", hideAllHistory); + + } + + var hideAllHistory = function () { + + if (!($("#all-history-list").css("display") == "none")) { $("#all-history-list").hide("blind", 250); } + $("#all-history").off("click"); + $("#all-history").on("click", showAllHistory); + + } + + $("#edit-history").on("click", showEditHistory); + $("#all-history").on("click", showAllHistory); }); diff --git a/pn-xslt/MakeHTML.xsl b/pn-xslt/MakeHTML.xsl index 443c0eb3..3ed9d001 100644 --- a/pn-xslt/MakeHTML.xsl +++ b/pn-xslt/MakeHTML.xsl @@ -170,6 +170,8 @@ + + @@ -200,8 +202,9 @@ - - + + +