Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var myExt={
- foo:function(){}
- };
- Components.utils.import( "resource://myExt/modules/myExt.jsm" myExt );
- myExt.bar.meh(); //call the exported object
- ///end of regular javascript
- inside myExt.jsm is:
- var EXPORTED_SYMBOLS = ["bar"];
- var bar:{
- meh:function(){
- myExt.foo(); //do I have access to this?
- }
- };
Advertisement
Add Comment
Please, Sign In to add comment