Changeset 16315


Ignore:
Timestamp:
05/27/13 16:24:50 (12 years ago)
Author:
tanio
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • schedule/Module/calendar.php

    r16314 r16315  
    106106                                                        var Time = [];
    107107                                                        var line;
     108                                                       
    108109                                                        for( src=0;src<source.length;src++)
    109110                                                        {
     
    121122                                                                  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    122123                                                                        {
    123                                                                                 line=xmlhttp.responseText.split('\n');
    124                                                                                 document.getElementById('data').innerHTML=line;
     124                                                                                line[src]=xmlhttp.responseText.split('\n');
     125                                                                                GraphData(line);
    125126                                                                        }
    126127                                                                }
     
    128129                                                                xmlhttp.open("GET","http://www.fact-project.org/smartfact/index.php?source="+escape(source[src])+"&time="+year+"-"+month+"-"+day,true);
    129130                                                                xmlhttp.send();
     131                                                        }
     132                                                        function GraphData(x)
     133                                                        {
     134                                                                document.getElementById('data').innerHTML=x;
    130135                                                        }
    131136                                                       
Note: See TracChangeset for help on using the changeset viewer.