(ajaxString)
| 93 | }; |
| 94 | //these functions makes the ajax calls and assigns to manUp object |
| 95 | var generateObj = function (ajaxString) { |
| 96 | //for testing |
| 97 | //document.getElementById("output").innerHTML = ajaxString; |
| 98 | //gen object |
| 99 | manUpObject = JSON.parse(ajaxString); |
| 100 | generateLinkArray(); |
| 101 | generateMetaArray(); |
| 102 | |
| 103 | }; |
| 104 | |
| 105 | var makeAjax = function (url) { |
| 106 | if (!window.XMLHttpRequest) return; |
no test coverage detected