- Timestamp:
- 05/20/13 19:15:37 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
schedule/Module/calendar.php
r15843 r15844 88 88 var cst=Time[c].split(':'); 89 89 colon[c]=cst[0]; 90 Temp[c]= cst[1]/60*100||"0";90 Temp[c]=(parseInt(cst[1]/60*100)||parseInt("0")); 91 91 for(var i=1;i<colon.length;i++) 92 92 { 93 93 var st=colon[i].split('T'); 94 arrTime[i]= st[1]||"0";94 arrTime[i]=(parseInt(st[1])||parseInt("0")); 95 95 } 96 96 }
Note:
See TracChangeset
for help on using the changeset viewer.