Yansky

Untitled

Jun 16th, 2011
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var myExt={
  2.     foo:function(){}
  3. };
  4.  
  5. Components.utils.import( "resource://myExt/modules/myExt.jsm" myExt );
  6.  
  7. myExt.bar.meh(); //call the exported object
  8.  
  9.  
  10. ///end of regular javascript
  11.  
  12. inside myExt.jsm is:
  13.  
  14. var EXPORTED_SYMBOLS = ["bar"];
  15.  
  16. var bar:{
  17.     meh:function(){
  18.         myExt.foo();    //do I have access to this?
  19.     }
  20. };
Advertisement
Add Comment
Please, Sign In to add comment