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

Update README.md

This commit is contained in:
Karl Bryan Paragua 2013-03-03 00:17:59 +08:00
parent 538322574f
commit 2005542620

View file

@ -299,7 +299,7 @@ You can achieve this by using the `Paloma.locals` object or its alias `_L`.
```javascript
Paloma.callbacks['users']['new'] = function(params){
_L.otherController.helperMethod(); // accessing local helperMethod() of the otherController
_L.otherController.helperVariable;
_L['otherController'].helperVariable;
}
```