Changeset 5098 for lang/javascript

Show
Ignore:
Timestamp:
01/20/08 21:00:35 (5 years ago)
Author:
machu
Message:

lang/javascript/flickr2blog/flickr2blog.js: add alt attribute, thanks id:kokutoto

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/javascript/flickr2blog/flickr2blog.js

    r4737 r5098  
    219219  html: { 
    220220    link: function(webUrl, srcUrl, photo, size) { 
    221       var img = '<img src="' + srcUrl + '" title="' + photo.title + '">'; 
     221      var img = '<img src="' + srcUrl + '" title="' + photo.title + '" alt="' +  photo.title + '">'; 
    222222      return '<a href="' + webUrl + '">' + img + '</a>'; 
    223223    },