egroupware/resources/js/resources.js
Nathan Gray e9d33a174d - Add more complicated actions
- Some other UI changes
2011-06-08 02:27:42 +00:00

15 lines
318 B
JavaScript

/**
* Javascript for resources app
*/
/**
* Calendar needs to have resource IDs prefixed with 'r' so it can tell them apart
* from calendar entries.
*/
function view_calendar(action, senders) {
for(var i = 0; i < senders.length; i++) {
action.data.url += ',r'+senders[i].id;
}
nm_action(action, senders);
}