]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/js/ui/default/opac/staff.js
Staff can now place title-type holds for patrons
[working/Evergreen.git] / Open-ILS / web / js / ui / default / opac / staff.js
1 /* staff client integration functions */
2 function debug(msg){dump(msg+'\n')}
3 var eventCache={};
4 function attachEvt(scope, name, action) {
5     if(!eventCache[scope]) eventCache[scope] = {};
6     if(!eventCache[scope][name]) eventCache[scope][name] = [];
7     eventCache[scope][name].push(action);
8 }
9 function runEvt(scope, name) {
10     debug('running event '+scope+':'+name);
11     var args = Array.prototype.slice.call(arguments).slice(2);
12     if(eventCache[scope]) {
13         var evt = eventCache[scope][name];
14         for(var i in evt) {evt[i].apply(evt[i], args);}
15     } 
16 }
17 function staff_hold_nicety(thing) {
18     document.getElementById("hold_usr_input").disabled =
19         Boolean(Number(thing.value));
20 }
21 window.onload = function() {
22     // record details page events
23     var rec = location.href.match(/\/opac\/record\/(\d+)/);
24     if(rec && rec[1]) { runEvt('rdetail', 'recordRetrieved', rec[1]); }
25     // fire other events the staff client is expecting...
26 }