Changeset 16511


Ignore:
Timestamp:
05/31/13 06:32:46 (11 years ago)
Author:
tanio
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • schedule/Module/calendar.php

    r16510 r16511  
    119119                                {
    120120                                        getXML();
    121                                         xmlhttp[index].onreadystatechange=function()
    122                                         {
     121                                        xmlhttp[index].onreadystatechange=xmlStateChange()
     122                                       
     123                                        xmlhttp[index].open("GET","http://www.fact-project.org/smartfact/index.php?source="+escape(source[index])+"&time="+year+"-"+month+"-"+day,true);
     124                                        xmlhttp[index].send();
     125                                }
     126                               
     127                                function xmlStateChange()
     128                                {
     129                                       
    123130                                         if (xmlhttp[index].readyState==4 && xmlhttp.status==200)
    124131                                                {
     
    133140                                                }
    134141                                               
    135                                         }
    136                                         xmlhttp[index].open("GET","http://www.fact-project.org/smartfact/index.php?source="+escape(source[index])+"&time="+year+"-"+month+"-"+day,true);
    137                                         xmlhttp[index].send();
     142                                       
    138143                                }
    139144
Note: See TracChangeset for help on using the changeset viewer.