| ... | @@ -6,33 +6,26 @@ Free and Pro-tier developers only have access to in-play scripting. Enterprise c | ... | @@ -6,33 +6,26 @@ Free and Pro-tier developers only have access to in-play scripting. Enterprise c | 
|  |  |  |  | 
|  | ## Getting started with Javacript |  | ## Getting started with Javacript | 
|  |  |  |  | 
|  | The simplest way to try custom scripting is through the |  | The simplest way to try custom scripting is through the custom javascript action in the effect builder. | 
|  |  |  |  | 
|  |  |  | To use it, use the custom javascript action. All javascript is executed in the context of that action. | 
|  | To use it, use the custom javascript action. All javascript is runned in the context of the the match and the action specifically. |  |  | 
|  |  |  |  | 
|  | Examples of custom javascript commands. |  | Examples of custom javascript commands. | 
|  |  |  |  | 
|  | console.log(thisCard) |  | console.log(thisCard) | 
|  | console.log(thisCard.variable) |  | thisCard.variable = "foobar" | 
|  | console.log(parseVariable('$variable')) |  | console.log(parseVariable('$variable')) | 
|  | console.log(thisMatch.variable) |  | console.log(dotSyntax('$variable.variable2')) | 
|  | console.log(thisCard.effects) |  |  | 
|  |  |  |  | 
|  | ## Included third party libraries |  | ## Included third party libraries | 
|  |  |  |  | 
|  | **Server side libraries:** |  | **Server side libraries:** | 
|  | Async |  | * Async | 
|  | Lodash |  | * Lodash | 
|  |  |  |  | 
|  | **Client side Libraries:** |  | **Client side Libraries:** | 
|  | Async |  | * Async | 
|  | Lodash |  | * Lodash | 
|  | jQuery |  | * jQuery | 
|  | three.js |  | * three.js | 
|  | hammer.js |  | * hammer.js | 
|  |  |  |  | 
|  |  |  |  | 
|  |  |  |  | 
|  | For client side scripting you have full access to the DOM as well as included libraries Lodash, jQuery, threejs. |  |  | 
|  |  |  |  |