diff options
author | Brion Vibber <brion@status.net> | 2010-11-08 14:20:23 -0800 |
---|---|---|
committer | Brion Vibber <brion@status.net> | 2010-11-08 14:20:23 -0800 |
commit | 32321de5e048ee50417a6d91b651180c28a801b1 (patch) | |
tree | d8493603a17a26d52cbd2005a907cfb4119aef3b /js | |
parent | 883f7a6c0b1464f6723e51bf99d06641a612f968 (diff) |
Some initial testing w/ thumb gen
Diffstat (limited to 'js')
-rw-r--r-- | js/util.js | 27 |
1 files changed, 6 insertions, 21 deletions
diff --git a/js/util.js b/js/util.js index 1be3f3053..a4eb0fc28 100644 --- a/js/util.js +++ b/js/util.js @@ -428,30 +428,15 @@ var SN = { // StatusNet }).attr('title', SN.msg('showmore_tooltip')); } else { - $.fn.jOverlay.options = { - method : 'GET', - data : '', - url : '', - color : '#000', - opacity : '0.6', - zIndex : 9999, - center : false, - imgLoading : $('address .url')[0].href+'theme/base/images/illustrations/illu_progress_loading-01.gif', - bgClickToClose : true, - success : function() { - $('#jOverlayContent').append('<button class="close">×</button>'); - $('#jOverlayContent button').click($.closeOverlay); - }, - timeout : 0, - autoHide : true, - css : {'max-width':'542px', 'top':'5%', 'left':'32.5%'} - }; + //imgLoading : $('address .url')[0].href+'theme/base/images/illustrations/illu_progress_loading-01.gif', - notice.find('a.attachment').click(function() { + notice.find('a.attachment').each(function() { var attachId = ($(this).attr('id').substring('attachment'.length + 1)); if (attachId) { - $().jOverlay({url: $('address .url')[0].href+'attachment/' + attachId + '/ajax'}); - return false; + var thumbUrl = $('address .url')[0].href+'attachment/' + attachId + '/thumb'; + var thumb = $('<div class="inline_thumb">Thumb: <img/></div>'); + thumb.find('img').attr('src', thumbUrl).last(); + notice.append(thumb); } }); |