mirror of
https://github.com/kbparagua/paloma
synced 2023-03-27 23:21:17 -04:00
20 lines
384 B
JavaScript
20 lines
384 B
JavaScript
Paloma.controller = {
|
|
|
|
/*
|
|
Put here code which can be used by all callbacks
|
|
under the controller folder.
|
|
|
|
Example:
|
|
|
|
variableName: value;
|
|
|
|
functionName: function(params){
|
|
alert('Paloma');
|
|
};
|
|
|
|
To use the variable and function:
|
|
Paloma.controller.variableName
|
|
Paloma.controller.functionName(params);
|
|
*/
|
|
|
|
};
|