1
0
Fork 0
mirror of https://github.com/kbparagua/paloma synced 2023-03-27 23:21:17 -04:00
paloma/app/templates/_local.js

21 lines
384 B
JavaScript
Raw Normal View History

Paloma.controller = {
/*
Put here code which can be used by all callbacks
under the controller folder.
Example:
2012-12-19 18:55:44 +08:00
variableName: value;
2012-12-19 18:55:44 +08:00
functionName: function(params){
alert('Paloma');
};
2012-12-19 18:55:44 +08:00
To use the variable and function:
Paloma.controller.variableName
Paloma.controller.functionName(params);
*/
};