1
0
Fork 0
mirror of https://github.com/kbparagua/paloma synced 2023-03-27 23:21:17 -04:00
paloma/app/templates/paloma.js
2012-12-22 03:51:44 +08:00

22 lines
403 B
JavaScript

window.Paloma = {callbacks:{}};
Paloma.g = {
/*
Put here global code that can be used by all callbacks,
regardless which folder they're from.
Example:
variableName: value;
functionName: function(params){
alert('Paloma');
};
To use the variable and function:
Paloma.g.variableName
Paloma.g.functionName(params);
*/
};