Is there a way to include a javascript file to a XBL instead of copy all the script to it?
feedback
|
|
I believe it is:
| |||||
|
feedback
|
|
I found that I need to add it to the Xul file, so I can use it in the XBL. | |||
|
feedback
|
|
If you only need to run the script once and it doesn't need to access your document (i.e. it just defines methods) then the easiest way is to turn it into a module, see https://developer.mozilla.org/en/Components.utils.import but if you need the script to run once per element then you will need to use the subscript loader (see the link from the above page). | |||
|
feedback
|