Display thumbnail on hover over links in notices when appropriate.

This commit is contained in:
Robin Millette
2009-05-25 11:13:13 -04:00
parent 5f3acc2527
commit 84edf12791
5 changed files with 38 additions and 3 deletions

View File

@@ -25,6 +25,19 @@ $(document).ready(function(){
//need to link to proper url depending on site config (path name and theme, for instance)
$('a.attachment').click(function() {$().jOverlay({url:'/attachment/' + ($(this).attr('id').substring('attachment'.length + 1)) + '/ajax'}); return false; });
$('.entry-title a.attachment').append('&nbsp;<img style="display: inline; vertical-align: middle" src="/theme/base/images/icons/clip-inline.png" alt="Attachment" />');
$('a.thumbnail').hover(function() {
anchor = $(this);
$.get('/attachment/' + ($(this).attr('id').substring('attachment'.length + 1)) + '/thumbnail', null, function(data) {
anchor.append(data);
$('#thumbnail').fadeIn('def');
});
},
function() {
setTimeout(function() {
$('#thumbnail').fadeOut('slow', function() {$(this).remove();});
}, 500);
}
);
// count character on keyup
function counter(event){