From 5e643af5d88e4074f6046765ebebd44b2238b3f3 Mon Sep 17 00:00:00 2001 From: Maxime Pelletier Date: Tue, 14 Aug 2012 17:57:22 -0400 Subject: [PATCH] Respect coding guidelines for translations in javascript by replacing ' by ". Fixes the page for the french translation (that contains a ') Sponsored by the CCSR --- .../prog/en/js/background-job-progressbar.js | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/js/background-job-progressbar.js b/koha-tmpl/intranet-tmpl/prog/en/js/background-job-progressbar.js index 2804182..4dba866 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/js/background-job-progressbar.js +++ b/koha-tmpl/intranet-tmpl/prog/en/js/background-job-progressbar.js @@ -69,7 +69,7 @@ function submitBackgroundJob(f) { backgroundJobProgressTimer = setInterval("updateJobProgress()", 500); }, error: function(xml, textStatus) { - alert('Failed to submit form: ' + textStatus); + alert("Failed to submit form: " + textStatus); } }); -- 1.7.2.5