From a35f970bbe2336bfa94de14b2aeac3b1a145d2a7 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: Paul Poulain --- 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 1f668b926a..a88ed84116 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.20.1