js.createNS: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
No edit summary
m (Cleaned up syntax/grammar)
 
Line 4: Line 4:
|version=1.10.0
|version=1.10.0
|description=
|description=
Create (or recreate) a javascript namespace.
Create (or recreate) a JavaScript namespace.
 


|usage=
|usage=
Line 14: Line 13:


'''Parameters'''
'''Parameters'''
* {{code|namespace}} - The namespace to (re)create.  If the namespace exists, this must be called from a trusted context.
* {{code|namespace}} - The namespace to (re)create.  If the namespace already exists, this must be called from a trusted context.
* {{code|trusted}} - If the namespace created should be a trusted namespace, defaults to true if called from a trusted context.
* {{code|trusted}} - If the namespace created should be a trusted namespace. Defaults to {{true}} if called from a trusted context.
 
 
 


|example=
|example=
Using {{code|js.eval}} on an {{code|expression}}.
Using {{code| js.createNS}} on an {{code|expression}}.
<syntaxhighlight lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[r: js.createNS("demo", true)]
[r: js.createNS("demo", true)]
</syntaxhighlight>
</syntaxhighlight>


|also=
|also=
Line 34: Line 29:
{{func|js.evalNS}}<br/>
{{func|js.evalNS}}<br/>
{{func|js.removeNS}}
{{func|js.removeNS}}
}}
}}
[[Category:Javascript Function]]
[[Category:Javascript Function]]

Latest revision as of 04:06, 7 July 2023

 This article describes a feature or macro function that is experimental and may be subject to change.

js.createNS() Function

Introduced in version 1.10.0
Create (or recreate) a JavaScript namespace.

Usage

js.createNS(namespace)
js.createNS(namespace, trusted)

Parameters

  • namespace - The namespace to (re)create. If the namespace already exists, this must be called from a trusted context.
  • trusted - If the namespace created should be a trusted namespace. Defaults to true(1) if called from a trusted context.

Example

Using js.createNS on an expression.
[r: js.createNS("demo", true)]

See Also