Changeset 191 for Dev/trunk/js/generalScripts.js
- Timestamp:
- 12/21/11 17:52:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk/js/generalScripts.js
r183 r191 76 76 } 77 77 78 // Function that handles updating of info panel via AJAX getInfo.php. Currently operates on HTML to paste into #infoPanelContent, should eventually involve JSON arrays, to have more control over formatting. 79 function ajaxInfoRequest(uid, el, type) { 80 // Info panel update. 81 82 var c = "uid="+uid; 83 c += "&type="+type; 84 var u = "getInfo.php"; 85 newAjaxRequest(c, u, function(result) { 86 el.innerHTML = result.responseText; 87 }, true); 88 } 89 78 90 // Function to save the object currently being edited. 79 91 // !! Still needs to be generalized !!
Note: See TracChangeset
for help on using the changeset viewer.