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
| $.Foo = function() { | |
| this.bar = new $.Bar(); | |
| this.biz = new $.Biz(); | |
| this.bar.setBiz(this.biz); | |
| this.biz.setBar(this.bar); | |
| }; | |
| $.Bar = function() {}; |
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 jsonToCSV(json, config) | |
| { | |
| var jsonobject = typeof json != 'object' ? JSON.parse(json) : json; | |
| var str = ''; | |
| for (var key in jsonobject) { | |
| var line = ''; | |
| var obj = jsonobject[key]; | |
| for (var prop in obj) { |
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
| { | |
| "useAjaxForSystem": true, | |
| "environments": { | |
| "adamdev": { | |
| "host": "ubuntu", | |
| "port": 80 | |
| }, |
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
| var CharacterElement = function(locChar) { | |
| this.x = null; | |
| this.y = null; | |
| this.width = null; | |
| this.dy = null; | |
| this.value = (locChar !== null) ? locChar : ""; | |
| this.se_newline = ""; | |
| this.characterAttribute = null; | |
| this.bbox = null; | |
| }; |