This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| def $outputXML = $myObject.data_map.myBlocXML.content.output.output_text|explode('"')|implode('\\"')|explode("\n")|implode(' ')|trim()} | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function include(src, attributes) | |
| { | |
| try { | |
| attributes = attributes || {}; | |
| attributes.type = "text/javascript"; | |
| attributes.src = src; | |
| var script = document.createElement("script"); | |
| for(aName in attributes) | |
| script[aName] = attributes[aName]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function createArray(length) { | |
| var a = new Array(length || 0); | |
| if (arguments.length > 1) { | |
| var args = Array.prototype.slice.call(arguments, 1); | |
| for (var i = 0; i < length; i++) { | |
| a[i] = createArray.apply(this, args); | |
| } | |
| } |
NewerOlder