Browse Source

Merge pull request #27 from DeCarabas/master

Fix it so that pins show up on IE.
tags/v0.3.1
Isaac Bythewood 12 years ago
parent
commit
cf7cd7cf83
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      pinry/core/static/core/js/pinry.js

+ 1
- 1
pinry/core/static/core/js/pinry.js View File

@@ -61,7 +61,7 @@ $(window).ready(function () {
image = data[i];
html += '<div class="pin">';
html += '<a class="fancybox" rel="pins" href="'+image.image+'">';
html += '<img src="'+image.thumbnail+'" width="200" height="'+Math.round(image.height/image.width*200)+'">';
html += '<img src="'+image.thumbnail+'" width="200" >';
html += '</a>';
html += '<p>'+image.description+'</p>';
html += '</div>';


Loading…
Cancel
Save