View | Details | Raw Unified | Return to bug 19417
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/lib/jquery/plugins/humanmsg.js (-1 lines)
Lines 75-81 var humanMsg = { Link Here
75
	bindEvents: function() {
75
	bindEvents: function() {
76
	// Remove message if mouse is moved or key is pressed
76
	// Remove message if mouse is moved or key is pressed
77
		jQuery(document)
77
		jQuery(document)
78
			.mousemove(humanMsg.removeMsg)
79
			.click(humanMsg.removeMsg)
78
			.click(humanMsg.removeMsg)
80
			.keypress(humanMsg.removeMsg)
79
			.keypress(humanMsg.removeMsg)
81
	},
80
	},
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/stage-marc-import.tt (+2 lines)
Lines 2-7 Link Here
2
<title>Koha &rsaquo; Tools &rsaquo; Stage MARC records for import</title>
2
<title>Koha &rsaquo; Tools &rsaquo; Stage MARC records for import</title>
3
[% INCLUDE 'doc-head-close.inc' %]
3
[% INCLUDE 'doc-head-close.inc' %]
4
4
5
<link rel="stylesheet" href="[% interface %]/[% theme %]/css/humanmsg.css" />
6
<script src="[% interface %]/lib/jquery/plugins/humanmsg.js" type="text/javascript"></script>
5
<script type="text/javascript" src="[% interface %]/[% theme %]/js/background-job-progressbar.js"></script>
7
<script type="text/javascript" src="[% interface %]/[% theme %]/js/background-job-progressbar.js"></script>
6
<script type="text/javascript" src="[% interface %]/[% theme %]/js/file-upload.js"></script>
8
<script type="text/javascript" src="[% interface %]/[% theme %]/js/file-upload.js"></script>
7
9
(-)a/koha-tmpl/intranet-tmpl/prog/js/background-job-progressbar.js (-2 / +1 lines)
Lines 69-75 function submitBackgroundJob(f) { Link Here
69
                backgroundJobProgressTimer = setInterval("updateJobProgress()", 500);
69
                backgroundJobProgressTimer = setInterval("updateJobProgress()", 500);
70
            },
70
            },
71
            error: function(xml, textStatus) {
71
            error: function(xml, textStatus) {
72
                alert('Failed to submit form: ' + textStatus);
72
                humanMsg.displayMsg( '<p>Failed to submit form: '+textStatus+'</p></br>'+xml.responseText, { className: 'humanError' } );
73
            }
73
            }
74
74
75
        });
75
        });
76
- 

Return to bug 19417