Changeset 6005

Show
Ignore:
Timestamp:
06/17/09 20:24:04 (1 year ago)
Author:
kinoshita
Message:

7762

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • spinelz/trunk/compress/javascripts/spinelz/calendar.js

    r5999 r6005  
    999999var icon=null; 
    10001000if(_116.icon){ 
    1001 icon=Builder.node("IMG",{id:"private_img_"+_116.id,src:_116.icon,alt:"icon",style:"float: left;",width:16,height:16}); 
     1001icon=Builder.node("IMG",{id:"private_img_"+_116.id,src:_116.icon,alt:_116.type_name,style:"float: left;",width:16,height:16}); 
    10021002_11d.appendChild(icon); 
    10031003}else{ 
    10041004if(Calendar.defaultIconPath){ 
    1005 icon=Builder.node("IMG",{id:"private_img_"+_116.id,src:Calendar.defaultIconPath,alt:"icon",style:"float: left;",width:16,height:16}); 
     1005icon=Builder.node("IMG",{id:"private_img_"+_116.id,src:Calendar.defaultIconPath,alt:_116.type_name,style:"float: left;",width:16,height:16}); 
    10061006_11d.appendChild(icon); 
    10071007} 
     
    17081708var icon=null; 
    17091709if(_220.icon){ 
    1710 icon=Builder.node("IMG",{src:_220.icon,alt:"icon",style:"float: left;",width:16,height:16}); 
     1710icon=Builder.node("IMG",{src:_220.icon,alt:_220.type_name,style:"float: left;",width:16,height:16}); 
    17111711}else{ 
    17121712if(Calendar.defaultIconPath){ 
    1713 icon=Builder.node("IMG",{src:Calendar.defaultIconPath,alt:"icon",style:"float: left;",width:16,height:16}); 
     1713icon=Builder.node("IMG",{src:Calendar.defaultIconPath,alt:_220.type_name,style:"float: left;",width:16,height:16}); 
    17141714} 
    17151715} 
  • spinelz/trunk/compress/javascripts/spinelz/spinelz_for_rubricks.js

    r6004 r6005  
    14771477var icon=null; 
    14781478if(_116.icon){ 
    1479 icon=Builder.node("IMG",{id:"private_img_"+_116.id,src:_116.icon,alt:"icon",style:"float: left;",width:16,height:16}); 
     1479icon=Builder.node("IMG",{id:"private_img_"+_116.id,src:_116.icon,alt:_116.type_name,style:"float: left;",width:16,height:16}); 
    14801480_11d.appendChild(icon); 
    14811481}else{ 
    14821482if(Calendar.defaultIconPath){ 
    1483 icon=Builder.node("IMG",{id:"private_img_"+_116.id,src:Calendar.defaultIconPath,alt:"icon",style:"float: left;",width:16,height:16}); 
     1483icon=Builder.node("IMG",{id:"private_img_"+_116.id,src:Calendar.defaultIconPath,alt:_116.type_name,style:"float: left;",width:16,height:16}); 
    14841484_11d.appendChild(icon); 
    14851485} 
     
    21862186var icon=null; 
    21872187if(_220.icon){ 
    2188 icon=Builder.node("IMG",{src:_220.icon,alt:"icon",style:"float: left;",width:16,height:16}); 
     2188icon=Builder.node("IMG",{src:_220.icon,alt:_220.type_name,style:"float: left;",width:16,height:16}); 
    21892189}else{ 
    21902190if(Calendar.defaultIconPath){ 
    2191 icon=Builder.node("IMG",{src:Calendar.defaultIconPath,alt:"icon",style:"float: left;",width:16,height:16}); 
     2191icon=Builder.node("IMG",{src:Calendar.defaultIconPath,alt:_220.type_name,style:"float: left;",width:16,height:16}); 
    21922192} 
    21932193} 
  • spinelz/trunk/src/javascripts/spinelz/calendar.js

    r5999 r6005  
    14231423    var icon = null; 
    14241424    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}); 
    14261426      container.appendChild(icon); 
    14271427    } 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}); 
    14291429      container.appendChild(icon); 
    14301430    } 
     
    23572357    var icon = null; 
    23582358    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}); 
    23602360    } 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}); 
    23622362    } 
    23632363