JavaScript in Add-on libraries: Difference between revisions
Jump to navigation
Jump to search
(Created page with "= JavaScript Context = A JavaScript context is created for an add-on to isolate the JavaScript environment from other add-ons. This context is not persisted across sessions or clients. It is destroyed when the add-on is removed and recreated when the add-on is updated. The {{code|onInit}} event for the add-on should be used to create any JavaScript objects that need to be created on startup of the add-on.") |
m (Add 'stub' marker and explanation) |
||
Line 1: | Line 1: | ||
{{stub}} | |||
= JavaScript Context = | = JavaScript Context = | ||
Line 6: | Line 8: | ||
It is destroyed when the add-on is removed and recreated when the add-on is updated. | It is destroyed when the add-on is removed and recreated when the add-on is updated. | ||
The {{code|onInit}} event for the add-on should be used to create any JavaScript objects that need to be created on startup of the add-on. | The {{code|onInit}} event for the add-on should be used to create any JavaScript objects that need to be created on startup of the add-on. | ||
It is believed that the JavaScript context created uses the namespace string of the add-on library, but this is not documented (currently). |
Revision as of 04:20, 7 July 2023
This article is a stub, you can help the RPTools Wiki project by contributing content to expand this article.
JavaScript Context
A JavaScript context is created for an add-on to isolate the JavaScript environment from other add-ons.
This context is not persisted across sessions or clients.
It is destroyed when the add-on is removed and recreated when the add-on is updated.
The onInit
event for the add-on should be used to create any JavaScript objects that need to be created on startup of the add-on.
It is believed that the JavaScript context created uses the namespace string of the add-on library, but this is not documented (currently).