Changeset 5516
- Timestamp:
- 02/07/08 11:20:39 (10 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
spinelz/trunk/compress/javascripts/spinelz/calendar.js
r5418 r5516 1195 1195 } 1196 1196 } 1197 if(_177&&_177.id ){1197 if(_177&&_177.id&&!_177.id.match(/emptyRow/)){ 1198 1198 var date=this.getDate(_177); 1199 1199 _176(date,_177); … … 1289 1289 throw $continue; 1290 1290 } 1291 var id=parseInt(cell.id.getSuffix() );1291 var id=parseInt(cell.id.getSuffix(),10); 1292 1292 if(_19c.include(id)){ 1293 1293 _197.addSelectedClass(cell); spinelz/trunk/compress/javascripts/spinelz/spinelz_for_rubricks.js
r5506 r5516 1505 1505 } 1506 1506 } 1507 if(_177&&_177.id ){1507 if(_177&&_177.id&&!_177.id.match(/emptyRow/)){ 1508 1508 var date=this.getDate(_177); 1509 1509 _176(date,_177); … … 1599 1599 throw $continue; 1600 1600 } 1601 var id=parseInt(cell.id.getSuffix() );1601 var id=parseInt(cell.id.getSuffix(),10); 1602 1602 if(_19c.include(id)){ 1603 1603 _197.addSelectedClass(cell); spinelz/trunk/src/javascripts/spinelz/calendar.js
r5418 r5516 1642 1642 } 1643 1643 } 1644 if (element && element.id ) {1644 if (element && element.id && !element.id.match(/emptyRow/)) { 1645 1645 var date = this.getDate(element); 1646 1646 method(date, element); … … 1747 1747 self.iterateTable({doCell: function(cell) { 1748 1748 if (cell.tagName != 'TD' || !cell.id) throw $continue; 1749 var id = parseInt(cell.id.getSuffix() );1749 var id = parseInt(cell.id.getSuffix(), 10); 1750 1750 1751 1751 if (range.include(id)) {
