forked from extern/egroupware
e9d33a174d
- Some other UI changes
15 lines
318 B
JavaScript
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);
|
|
}
|