Changeset 804
- Timestamp:
- 02/23/09 17:34:23 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/pixearch/js/post.js
r656 r804 35 35 var d = this.data; 36 36 37 var res = '<div class=" externalPicture"';37 var res = '<div class="pixearch"'; 38 38 39 39 if (d.pixearchAlign == 'left') … … 51 51 res += '>\n'; 52 52 53 if (d.pixearch _insert != 0)53 if (d.pixearchInsert != 0) 54 54 { 55 res += '<a href="' + d.pixearch _insert + '">';55 res += '<a href="' + d.pixearchInsert + '">'; 56 56 } 57 57 res += '<img src="' + d.pixearchUri+'" class="pixearchImg" alt="' + d.pixearchTitle + '" />'; 58 if (d.pixearch _insert != 0)58 if (d.pixearchInsert != 0) 59 59 { 60 60 res += '</a>'; … … 62 62 63 63 res += '\n</div>\n'; 64 64 65 65 return res; 66 66 },
Note: See TracChangeset
for help on using the changeset viewer.