Bug 15091: DEBT is IMPOSSIBLE, not NEEDSCONFIRMATION
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / js / staff-global.js
1 // staff-global.js
2 if ( KOHA === undefined ) var KOHA = {};
3
4 function _(s) { return s; } // dummy function for gettext
5
6 // http://stackoverflow.com/questions/1038746/equivalent-of-string-format-in-jquery/5341855#5341855
7 String.prototype.format = function() { return formatstr(this, arguments) }
8 function formatstr(str, col) {
9     col = typeof col === 'object' ? col : Array.prototype.slice.call(arguments, 1);
10     var idx = 0;
11     return str.replace(/%%|%s|%(\d+)\$s/g, function (m, n) {
12         if (m == "%%") { return "%"; }
13         if (m == "%s") { return col[idx++]; }
14         return col[n];
15     });
16 };
17
18
19 // http://stackoverflow.com/questions/14859281/select-tab-by-name-in-jquery-ui-1-10-0/16550804#16550804
20 $.fn.tabIndex = function () {
21     return $(this).parent().children('div').index(this);
22 };
23 $.fn.selectTabByID = function (tabID) {
24     $(this).tabs("option", "active", $(tabID).tabIndex());
25 };
26
27  $(document).ready(function() {
28     $('#header_search').tabs().on( "tabsactivate", function(e, ui) { $(this).find("div:visible").find('input').eq(0).focus(); });
29
30     $(".close").click(function(){ window.close(); });
31
32     if($("#header_search #checkin_search").length > 0){ shortcut.add('Alt+r',function (){ $("#header_search").selectTabByID("#checkin_search"); $("#ret_barcode").focus(); }); } else { shortcut.add('Alt+r',function (){ location.href="/cgi-bin/koha/circ/returns.pl"; }); }
33     if($("#header_search #circ_search").length > 0){ shortcut.add('Alt+u',function (){ $("#header_search").selectTabByID("#circ_search"); $("#findborrower").focus(); }); } else { shortcut.add('Alt+u',function(){ location.href="/cgi-bin/koha/circ/circulation.pl"; }); }
34     if($("#header_search #catalog_search").length > 0){ shortcut.add('Alt+q',function (){ $("#header_search").selectTabByID("#catalog_search"); $("#search-form").focus(); }); } else { shortcut.add('Alt+q',function(){ location.href="/cgi-bin/koha/catalogue/search.pl"; }); }
35
36     $(".focus").focus();
37     $(".validated").each(function() {
38         $(this).validate();
39     });
40
41     $("#logout").on("click",function(){
42         logOut();
43     });
44     $("#helper").on("click",function(){
45         openHelp();
46         return false;
47     });
48
49     $("body").on("keypress", ".noEnterSubmit", function(e){
50         return checkEnter(e);
51     });
52 });
53
54 // http://jennifermadden.com/javascript/stringEnterKeyDetector.html
55 function checkEnter(e){ //e is event object passed from function invocation
56     var characterCode; // literal character code will be stored in this variable
57     if(e && e.which){ //if which property of event object is supported (NN4)
58         characterCode = e.which; //character code is contained in NN4's which property
59     } else {
60         characterCode = e.keyCode; //character code is contained in IE's keyCode property
61     }
62
63     if(characterCode == 13){ //if generated character code is equal to ascii 13 (if enter key)
64         return false;
65     } else {
66         return true;
67     }
68 }
69
70 function clearHoldFor(){
71     $.removeCookie("holdfor", { path: '/' });
72 }
73
74 function logOut(){
75     if( typeof delBasket == 'function' ){
76         delBasket('main', true);
77     }
78     clearHoldFor();
79 }
80
81 function openHelp(){
82     openWindow("/cgi-bin/koha/help.pl","KohaHelp",600,600);
83 }
84
85 jQuery.fn.preventDoubleFormSubmit = function() {
86     jQuery(this).submit(function() {
87     $("body, form input[type='submit'], form button[type='submit'], form a").addClass('waiting');
88         if (this.beenSubmitted)
89             return false;
90         else
91             this.beenSubmitted = true;
92     });
93 };
94
95 function openWindow(link,name,width,height) {
96     name = (typeof name == "undefined")?'popup':name;
97     width = (typeof width == "undefined")?'600':width;
98     height = (typeof height == "undefined")?'400':height;
99     //IE <= 9 can't handle a "name" with whitespace
100     try {
101         var newin=window.open(link,name,'width='+width+',height='+height+',resizable=yes,toolbar=false,scrollbars=yes,top');
102     } catch(e) {
103         var newin=window.open(link,null,'width='+width+',height='+height+',resizable=yes,toolbar=false,scrollbars=yes,top');
104     }
105 }
106
107 // Use this function to remove the focus from any element for
108 // repeated scanning actions on errors so the librarian doesn't
109 // continue scanning and miss the error.
110 function removeFocus() {
111     $(':focus').blur();
112 }
113
114 function toUC(f) {
115     var x=f.value.toUpperCase();
116     f.value=x;
117     return true;
118 }
119
120 function confirmDelete(message) {
121     return (confirm(message) ? true : false);
122 }
123
124 function playSound( sound ) {
125     if ( ! ( sound.indexOf('http://') == 0 || sound.indexOf('https://') == 0  ) ) {
126         sound = AUDIO_ALERT_PATH + sound;
127     }
128     document.getElementById("audio-alert").innerHTML = '<audio src="' + sound + '" autoplay="autoplay" autobuffer="autobuffer"></audio>';
129 }