Changeset 6005
- Timestamp:
- 06/17/09 20:24:04 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
spinelz/trunk/compress/javascripts/spinelz/calendar.js
r5999 r6005 999 999 var icon=null; 1000 1000 if(_116.icon){ 1001 icon=Builder.node("IMG",{id:"private_img_"+_116.id,src:_116.icon,alt: "icon",style:"float: left;",width:16,height:16});1001 icon=Builder.node("IMG",{id:"private_img_"+_116.id,src:_116.icon,alt:_116.type_name,style:"float: left;",width:16,height:16}); 1002 1002 _11d.appendChild(icon); 1003 1003 }else{ 1004 1004 if(Calendar.defaultIconPath){ 1005 icon=Builder.node("IMG",{id:"private_img_"+_116.id,src:Calendar.defaultIconPath,alt: "icon",style:"float: left;",width:16,height:16});1005 icon=Builder.node("IMG",{id:"private_img_"+_116.id,src:Calendar.defaultIconPath,alt:_116.type_name,style:"float: left;",width:16,height:16}); 1006 1006 _11d.appendChild(icon); 1007 1007 } … … 1708 1708 var icon=null; 1709 1709 if(_220.icon){ 1710 icon=Builder.node("IMG",{src:_220.icon,alt: "icon",style:"float: left;",width:16,height:16});1710 icon=Builder.node("IMG",{src:_220.icon,alt:_220.type_name,style:"float: left;",width:16,height:16}); 1711 1711 }else{ 1712 1712 if(Calendar.defaultIconPath){ 1713 icon=Builder.node("IMG",{src:Calendar.defaultIconPath,alt: "icon",style:"float: left;",width:16,height:16});1713 icon=Builder.node("IMG",{src:Calendar.defaultIconPath,alt:_220.type_name,style:"float: left;",width:16,height:16}); 1714 1714 } 1715 1715 } spinelz/trunk/compress/javascripts/spinelz/spinelz_for_rubricks.js
r6004 r6005 1477 1477 var icon=null; 1478 1478 if(_116.icon){ 1479 icon=Builder.node("IMG",{id:"private_img_"+_116.id,src:_116.icon,alt: "icon",style:"float: left;",width:16,height:16});1479 icon=Builder.node("IMG",{id:"private_img_"+_116.id,src:_116.icon,alt:_116.type_name,style:"float: left;",width:16,height:16}); 1480 1480 _11d.appendChild(icon); 1481 1481 }else{ 1482 1482 if(Calendar.defaultIconPath){ 1483 icon=Builder.node("IMG",{id:"private_img_"+_116.id,src:Calendar.defaultIconPath,alt: "icon",style:"float: left;",width:16,height:16});1483 icon=Builder.node("IMG",{id:"private_img_"+_116.id,src:Calendar.defaultIconPath,alt:_116.type_name,style:"float: left;",width:16,height:16}); 1484 1484 _11d.appendChild(icon); 1485 1485 } … … 2186 2186 var icon=null; 2187 2187 if(_220.icon){ 2188 icon=Builder.node("IMG",{src:_220.icon,alt: "icon",style:"float: left;",width:16,height:16});2188 icon=Builder.node("IMG",{src:_220.icon,alt:_220.type_name,style:"float: left;",width:16,height:16}); 2189 2189 }else{ 2190 2190 if(Calendar.defaultIconPath){ 2191 icon=Builder.node("IMG",{src:Calendar.defaultIconPath,alt: "icon",style:"float: left;",width:16,height:16});2191 icon=Builder.node("IMG",{src:Calendar.defaultIconPath,alt:_220.type_name,style:"float: left;",width:16,height:16}); 2192 2192 } 2193 2193 } spinelz/trunk/src/javascripts/spinelz/calendar.js
r5999 r6005 1423 1423 var icon = null; 1424 1424 if (schedule.icon) { 1425 icon = Builder.node('IMG', {id: 'private_img_' + schedule.id, src: schedule.icon, alt: 'icon', style: 'float: left;', width: 16, height: 16});1425 icon = Builder.node('IMG', {id: 'private_img_' + schedule.id, src: schedule.icon, alt: schedule.type_name, style: 'float: left;', width: 16, height: 16}); 1426 1426 container.appendChild(icon); 1427 1427 } else if (Calendar.defaultIconPath) { 1428 icon = Builder.node('IMG', {id: 'private_img_' + schedule.id, src: Calendar.defaultIconPath, alt: 'icon', style: 'float: left;', width: 16, height: 16});1428 icon = Builder.node('IMG', {id: 'private_img_' + schedule.id, src: Calendar.defaultIconPath, alt: schedule.type_name, style: 'float: left;', width: 16, height: 16}); 1429 1429 container.appendChild(icon); 1430 1430 } … … 2357 2357 var icon = null; 2358 2358 if (schedule.icon) { 2359 icon = Builder.node('IMG', {src: schedule.icon, alt: 'icon', style: 'float: left;', width: 16, height: 16});2359 icon = Builder.node('IMG', {src: schedule.icon, alt: schedule.type_name, style: 'float: left;', width: 16, height: 16}); 2360 2360 } else if (Calendar.defaultIconPath) { 2361 icon = Builder.node('IMG', {src: Calendar.defaultIconPath, alt: 'icon', style: 'float: left;', width: 16, height: 16});2361 icon = Builder.node('IMG', {src: Calendar.defaultIconPath, alt: schedule.type_name, style: 'float: left;', width: 16, height: 16}); 2362 2362 } 2363 2363
