From 820083f036e2e07cac8d40478c0ad469318214d5 Mon Sep 17 00:00:00 2001 From: Hector Castro Date: Thu, 22 Sep 2016 11:24:40 -0600 Subject: [PATCH] [PASSED QA] Bug 14668: (follow-up) JSON fails if single quotes are used Change single quotes to double quotes also add brackets to serial enumeration. To test follow previous test plan for intranet. Fix double semicolon Signed-off-by: Hector Castro Signed-off-by: Katrin Fischer --- koha-tmpl/intranet-tmpl/prog/js/checkouts.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js index cca2a28..f282aab 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js +++ b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js @@ -228,7 +228,7 @@ $(document).ready(function() { }); if ( oObj.enumchron ) { - title += ' ' + oObj.enumchron; + title += " (" + oObj.enumchron + ")"; } title += ""; @@ -504,7 +504,7 @@ $(document).ready(function() { }); if ( oObj.enumchron ) { - title += ' ' + oObj.enumchron; + title += " (" + oObj.enumchron + ")"; } title += ""; -- 2.7.4