Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
{
	"display": string, 
	"globals": {
		"imports": [ string ],// An optional list of URLs that get imported before the scripts below are run
		"scripts": [ string ], // A list of (java)script code blocks that are evaluated in order (normally only need to specify one)
		"scriptlang":string, // Currently only "javascript" is supported
	}
}

Description

 

Globals is used to set functions that the other elements that use javascript can access.

...