From f79b0bf480e8aa4d7695f3bdd0c2cb946db25d26 Mon Sep 17 00:00:00 2001 From: Marc Veron Date: Thu, 2 Aug 2012 11:25:15 +0200 Subject: [PATCH] Bug 8556 - "Mark seen and continue" not translatable in inventory.tt Added missing _(...) wrapper in JavaScript in inventory.tt Additionaly added two blanks to separate buttons (were sticked together without white space) Signed-off-by: Jonathan Druart Signed-off-by: Chris Cormack --- koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt index 61533ad966..a1c1ec4b79 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt @@ -14,8 +14,8 @@ $(document).ready(function(){ $(".checkboxed").unCheckCheckboxes(); return false; }); -[% IF ( offset ) %]$("#markseen").before("");[% END %] -[% IF ( nextoffset ) %]$("#markseen").after("");[% END %] +[% IF ( offset ) %]$("#markseen").before(" ");[% END %] +[% IF ( nextoffset ) %]$("#markseen").after(" ");[% END %] $("#markback").click(function(){ $(".checkboxed").find("input").filter("[name=offset]").attr("value","[% prevoffset %]"); return true; -- 2.39.5