@@ -, +, @@ records --- koha-tmpl/intranet-tmpl/lib/jquery/plugins/humanmsg.js | 1 - koha-tmpl/intranet-tmpl/prog/en/modules/tools/stage-marc-import.tt | 2 ++ koha-tmpl/intranet-tmpl/prog/js/background-job-progressbar.js | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/lib/jquery/plugins/humanmsg.js +++ a/koha-tmpl/intranet-tmpl/lib/jquery/plugins/humanmsg.js @@ -75,7 +75,6 @@ var humanMsg = { bindEvents: function() { // Remove message if mouse is moved or key is pressed jQuery(document) - .mousemove(humanMsg.removeMsg) .click(humanMsg.removeMsg) .keypress(humanMsg.removeMsg) }, --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/stage-marc-import.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/stage-marc-import.tt @@ -2,6 +2,8 @@ Koha › Tools › Stage MARC records for import [% INCLUDE 'doc-head-close.inc' %] + + --- a/koha-tmpl/intranet-tmpl/prog/js/background-job-progressbar.js +++ a/koha-tmpl/intranet-tmpl/prog/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); + humanMsg.displayMsg( '

Failed to submit form: '+textStatus+'


'+xml.responseText, { className: 'humanError' } ); } }); --