Changeset 1820900
- Timestamp:
- 02/12/2018 10:45:47 PM (8 years ago)
- Location:
- lw-mwp-tools
- Files:
-
- 2 edited
-
tags/0.3.1/monitor.php (modified) (1 diff)
-
trunk/monitor.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lw-mwp-tools/tags/0.3.1/monitor.php
r1820882 r1820900 58 58 function updateChart(){ 59 59 var xhr = new XMLHttpRequest(); //ie7+ 60 xhr.open("GET", <?php echo "\"" . $jsonpath . "\""; ?>, true ,); //little bit of mixing php here to get the path of monitor_json.php to get the json with all the system resource info60 xhr.open("GET", <?php echo "\"" . $jsonpath . "\""; ?>, true); //little bit of mixing php here to get the path of monitor_json.php to get the json with all the system resource info 61 61 xhr.onload = function (e) { 62 62 if (xhr.readyState === 4){ -
lw-mwp-tools/trunk/monitor.php
r1820882 r1820900 58 58 function updateChart(){ 59 59 var xhr = new XMLHttpRequest(); //ie7+ 60 xhr.open("GET", <?php echo "\"" . $jsonpath . "\""; ?>, true ,); //little bit of mixing php here to get the path of monitor_json.php to get the json with all the system resource info60 xhr.open("GET", <?php echo "\"" . $jsonpath . "\""; ?>, true); //little bit of mixing php here to get the path of monitor_json.php to get the json with all the system resource info 61 61 xhr.onload = function (e) { 62 62 if (xhr.readyState === 4){
Note: See TracChangeset
for help on using the changeset viewer.