]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Drop commented-out code from old lightbox & thumbnail popup stuff
authorBrion Vibber <brion@status.net>
Fri, 12 Nov 2010 20:10:29 +0000 (12:10 -0800)
committerBrion Vibber <brion@status.net>
Fri, 12 Nov 2010 20:10:29 +0000 (12:10 -0800)
js/util.js

index 15fb163103056cf5ad8bc407081a77acc464aafe..bf3c43fd8a559ea6e95732d1e82d341df2df5e87 100644 (file)
@@ -427,50 +427,6 @@ var SN = { // StatusNet
                     return false;
                 }).attr('title', SN.msg('showmore_tooltip'));
             }
-            else {
-                //imgLoading : $('address .url')[0].href+'theme/base/images/illustrations/illu_progress_loading-01.gif',
-
-                notice.find('a.attachment').each(function() {
-                    /*
-                    var attachId = ($(this).attr('id').substring('attachment'.length + 1));
-                    if (attachId) {
-                        var thumbUrl = $('address .url')[0].href+'attachment/' + attachId + '/thumb';
-                        var thumb = $('<div class="attachment-thumb">Thumb: <img/></div>');
-                        thumb.find('img').attr('src', thumbUrl).last();
-                        notice.find('.entry-title .entry-content').append(thumb);
-                    }
-                    */
-                });
-
-                if ($('#shownotice').length == 0) {
-                    /*
-                    var t;
-                    notice.find('a.thumbnail').hover(
-                        function() {
-                            var anchor = $(this);
-                            $('a.thumbnail').children('img').hide();
-                            anchor.closest(".entry-title").addClass('ov');
-
-                            if (anchor.children('img').length === 0) {
-                                t = setTimeout(function() {
-                                    $.get($('address .url')[0].href+'attachment/' + (anchor.attr('id').substring('attachment'.length + 1)) + '/thumbnail', null, function(data) {
-                                        anchor.append(data);
-                                    });
-                                }, 500);
-                            }
-                            else {
-                                anchor.children('img').show();
-                            }
-                        },
-                        function() {
-                            clearTimeout(t);
-                            $('a.thumbnail').children('img').hide();
-                            $(this).closest('.entry-title').removeClass('ov');
-                        }
-                    );
-                    */
-                }
-            }
         },
 
         NoticeDataAttach: function() {