11 lines
227 B
JavaScript
11 lines
227 B
JavaScript
/* definitions.js
|
|
*
|
|
* A mapping array of splash ~> JS commands. Used by parser.js to "compile" code.
|
|
*
|
|
* @Author: Ryan McGrath (ryan@venodesigns.net)
|
|
* @Requires: Nothing
|
|
*/
|
|
|
|
exports.map = {
|
|
color: "backgroundColor",
|
|
}
|