Bug 12138 - Use placeholders in translatable Javascript strings
[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().find(this).index() - 1;
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         e = e;
59         characterCode = e.which; //character code is contained in NN4's which property
60     } else {
61         e = window.event;
62         characterCode = e.keyCode; //character code is contained in IE's keyCode property
63     }
64
65     if(characterCode == 13){ //if generated character code is equal to ascii 13 (if enter key)
66         return false;
67     } else {
68         return true;
69     }
70 }
71
72 function clearHoldFor(){
73         $.cookie("holdfor",null, { path: "/", expires: 0 });
74 }
75
76 function logOut(){
77     if( typeof delBasket == 'function' ){
78         delBasket('main', true);
79     }
80     clearHoldFor();
81 }
82
83 function openHelp(){
84     openWindow("/cgi-bin/koha/help.pl","Koha help",600,600);
85 }
86
87 jQuery.fn.preventDoubleFormSubmit = function() {
88     jQuery(this).submit(function() {
89     $("body, form input[type='submit'], form button[type='submit'], form a").addClass('waiting');
90         if (this.beenSubmitted)
91             return false;
92         else
93             this.beenSubmitted = true;
94     });
95 };
96
97 function openWindow(link,name,width,height) {
98     name = (typeof name == "undefined")?'popup':name;
99     width = (typeof width == "undefined")?'600':width;
100     height = (typeof height == "undefined")?'400':height;
101     var newin=window.open(link,name,'width='+width+',height='+height+',resizable=yes,toolbar=false,scrollbars=yes,top');
102 }
103
104 // Use this function to remove the focus from any element for
105 // repeated scanning actions on errors so the librarian doesn't
106 // continue scanning and miss the error.
107 function removeFocus() {
108     $(':focus').blur();
109 }
110
111 function toUC(f) {
112     var x=f.value.toUpperCase();
113     f.value=x;
114     return true;
115 }
116
117 function confirmDelete(message) {
118     return (confirm(message) ? true : false);
119 }