I am in my controller (ControllerA
) and I have an external file that I want to handle orientation changes.
//-- In ControllerA
var gestures = require('gestures');
Inside gestures.js
I need access to $
so I can manipulate some elements in ControllerA
Inside gestures.js
I currently get undefined for $
I have successfully managed to get this to work by creating an init()
function in gestures
and I can intantiate the require like:
var gestures = require('gestures').init($);
but this feels like a hack.
What is the proper way of doing this in alloy?
edit
Just a side note. I tried doing this with Ti.include()
as well and same thing...no access to $
CommenJS modules (included in other controller using require ) must be independent off any other controllers. from it's name "gesture.js" i think you are trying to controle some orientations changes and shake gestures ... You have to define this module to use it in all other controllers and for that this feature exist.
for example suppose i have a module called animations.js :
Then i can use this module from many other controller and to animate many titanium's objects just require it in controller.js file and use moveToLeft function ...