Add basic client-side AJAX wrappers
[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  $(document).ready(function() {
7         $(".focus").focus();
8         $('#header_search > ul').tabs().bind('show.ui-tabs', function(e, ui) { $('#header_search > div:not(.ui-tabs-hide)').find('input').eq(0).focus(); });
9         $(".close").click(function(){ window.close(); });
10         if($("#header_search #checkin_search").length > 0){ $(document).bind('keydown','Alt+r',function (){ $("#header_search > ul").tabs("select","#checkin_search"); $("#ret_barcode").focus(); }); } else { $(document).bind('keydown','Alt+r',function (){ location.href="/cgi-bin/koha/circ/returns.pl"; }); }
11         if($("#header_search #circ_search").length > 0){ $(document).bind('keydown','Alt+u',function (){ $("#header_search > ul").tabs("select","#circ_search"); $("#findborrower").focus(); }); } else { $(document).bind('keydown','Alt+u',function(){ location.href="/cgi-bin/koha/circ/circulation.pl"; }); }
12         if($("#header_search #catalog_search").length > 0){ $(document).bind('keydown','Alt+q',function (){ $("#header_search > ul").tabs("select","#catalog_search"); $("#search-form").focus(); }); } else { $(document).bind('keydown','Alt+q',function(){ location.href="/cgi-bin/koha/catalogue/search.pl"; }); }
13  });
14  
15              YAHOO.util.Event.onContentReady("header", function () {
16                                 var oMoremenu = new YAHOO.widget.Menu("moremenu", { zindex: 2 });
17
18                                 function positionoMoremenu() {
19                                         oMoremenu.align("tl", "bl");
20                                 }
21
22                 oMoremenu.subscribe("beforeShow", function () {
23                     if (this.getRoot() == this) {
24                                                 positionoMoremenu();
25                     }
26                 });
27
28                                 oMoremenu.render();
29
30                 oMoremenu.cfg.setProperty("context", ["showmore", "tl", "bl"]);
31
32                                 function onShowMoreClick(p_oEvent) {
33                     // Position and display the menu        
34                     positionoMoremenu();
35                     oMoremenu.show();
36                     // Stop propagation and prevent the default "click" behavior
37                     YAHOO.util.Event.stopEvent(p_oEvent);       
38                                 }
39
40                                 YAHOO.util.Event.addListener("showmore", "click", onShowMoreClick);
41
42                 YAHOO.widget.Overlay.windowResizeEvent.subscribe(positionoMoremenu);
43             });
44
45 YAHOO.util.Event.onContentReady("changelanguage", function () {
46                 var oMenu = new YAHOO.widget.Menu("sublangs", { zindex: 2 });
47
48                     function positionoMenu() {
49                     oMenu.align("bl", "tl");
50                 }
51
52                 oMenu.subscribe("beforeShow", function () {
53                     if (this.getRoot() == this) {
54                                                 positionoMenu();
55                     }
56                 });
57
58                 oMenu.render();
59
60                                 oMenu.cfg.setProperty("context", ["showlang", "bl", "tl"]);
61
62                                 function onYahooClick(p_oEvent) {
63                     // Position and display the menu        
64                     positionoMenu();
65                     oMenu.show();
66                     // Stop propagation and prevent the default "click" behavior
67                     YAHOO.util.Event.stopEvent(p_oEvent);
68                 }
69
70                                 YAHOO.util.Event.addListener("showlang", "click", onYahooClick);
71
72                                 YAHOO.widget.Overlay.windowResizeEvent.subscribe(positionoMenu);
73             });
74                         
75 // http://jennifermadden.com/javascript/stringEnterKeyDetector.html
76 function checkEnter(e){ //e is event object passed from function invocation
77         var characterCode; // literal character code will be stored in this variable
78         if(e && e.which){ //if which property of event object is supported (NN4)
79                 e = e;
80                 characterCode = e.which; //character code is contained in NN4's which property
81         } else {
82                 e = event;
83                 characterCode = e.keyCode; //character code is contained in IE's keyCode property
84         }
85
86         if(characterCode == 13){ //if generated character code is equal to ascii 13 (if enter key)
87                 return false;
88         } else {
89                 return true;
90         }
91 }