Bugzilla – Attachment 34175 Details for
Bug 13408
Tell librarians they may continue scanning while checkouts table is loading
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[Signed-off] Bug 13408 - Tell librarians they may continue scanning while checkouts table is loading
Signed-off-Bug-13408---Tell-librarians-they-may-co.patch (text/plain), 2.91 KB, created by
Marc Véron
on 2014-12-08 14:41:28 UTC
(
hide
)
Description:
[Signed-off] Bug 13408 - Tell librarians they may continue scanning while checkouts table is loading
Filename:
MIME Type:
Creator:
Marc Véron
Created:
2014-12-08 14:41:28 UTC
Size:
2.91 KB
patch
obsolete
>From 8705095103bcacc1e9327a44410e9bb03f38401b Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Mon, 8 Dec 2014 07:39:35 -0500 >Subject: [PATCH] [Signed-off] Bug 13408 - Tell librarians they may continue > scanning while checkouts table is loading >MIME-Version: 1.0 >Content-Type: text/plain; charset=UTF-8 >Content-Transfer-Encoding: 8bit > >Some librarians do not realize they can continue scanning items even if >the checkouts table has not loaded. We should have Koha tell them >explicitly that they may continue scanning barcodes. > >Test Plan: >1) Apply this patch >2) Load the checkouts table on circulation.pl, note the loading message is now > Loading... you may continue scanning. >3) Load the checkouts table on moremember.pl, note the loading message is still > Loading... > >Works as expected. >Signed-off-by: Marc Véron <veron@veron.ch> >--- > koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js | 3 ++- > koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 1 + > koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt | 1 + > 3 files changed, 4 insertions(+), 1 deletion(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js b/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js >index a135496..f0b1771 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js >+++ b/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js >@@ -158,7 +158,8 @@ $(document).ready(function() { > > issuesTable = $("#issues-table").dataTable({ > "oLanguage": { >- "sEmptyTable" : MSG_DT_LOADING_RECORDS, >+ "sEmptyTable" : issues_table_loading_message, >+ "sProcessing": issues_table_loading_message, > }, > "bAutoWidth": false, > "sDom": "rt", >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >index b938724..ba9aa4b 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >@@ -28,6 +28,7 @@ > <script type="text/javascript"> > //<![CDATA[ > /* Set some variable needed in circulation.js */ >+var issues_table_loading_message = _("Loading... you may continue scanning."); > var interface = "[% interface %]"; > var theme = "[% theme %]"; > var borrowernumber = "[% borrowernumber %]"; >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt >index 8ebd31f..1db05f3 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt >@@ -26,6 +26,7 @@ > <script type="text/JavaScript"> > //<![CDATA[ > /* Set some variable needed in circulation.js */ >+var issues_table_loading_message = _("Loading..."); > var interface = "[% interface %]"; > var theme = "[% theme %]"; > var borrowernumber = "[% borrowernumber %]"; >-- >1.7.10.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 13408
:
34174
|
34175
|
34186
|
34232
|
34911