Changeset 16590 for schedule


Ignore:
Timestamp:
06/02/13 15:53:20 (11 years ago)
Author:
tanio
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • schedule/Module/calendar.php

    r16586 r16590  
    101101                                        //calls the xml request in a loop based on the current sources               
    102102                                        var source = ['Mrk 421','Mrk 501'];
    103                                         for (i = 0; i<source.length; i++) {
     103                                        for (i = 0; i<source.length; i++)
     104                                        {
    104105                                                testXMLData(i, source);
    105106                                        }
     
    119120                                                        dataSource.push(line);
    120121                                                        if (dataSource.length == source.length)
     122                                                                {
    121123                                                                displayXMLData(dataSource, source); //this will be called when the last data from the list is read
     124                                                                }
    122125                                                }
    123126                                        testXML.send();
     
    128131                                        //This function splits the lines of data per data source
    129132                                        var dataGraph = new Array(source.length);
    130                                         for (i=0; i<source.length; i++) {
     133                                        for (i=0; i<source.length; i++)
     134                                        {
    131135                                                dataGraph[i] = new Array(); //dataGraph contains the individual points for each source i
    132136                                                for(row=0;row<dataSource[i].length;row++)
     
    140144
    141145                 CAL.addEventListener("onSelect", function(){
    142                                                          day =this.selection.print("%d").join("\n");
    143                                                          month =this.selection.print("%m").join("\n");
     146                                                        day =this.selection.print("%d").join("\n");
     147                                                        month =this.selection.print("%m").join("\n");
    144148                                                        year =this.selection.print("%Y").join("\n");   
    145149                                                        //document.getElementById('data').innerHTML="Calendar selected! ";
Note: See TracChangeset for help on using the changeset viewer.