Subversion Repositories My Stuff

Compare Revisions

Ignore whitespace Rev 23 → Rev 24

/trunk/JavaScripts/imgtooltip.js
21,4 → 21,11
position : 'top left'
}).dynamic({ bottom: { direction: 'down', bounce: true } });
$('img.linux_logo').tooltip({
effect: 'fade',
tipClass : 'imgtooltip',
opacity : 0.7,
position : 'top right'
}).dynamic({ bottom: { direction: 'down', bounce: true } });
});
/trunk/JavaScripts/news_search.js
0,0 → 1,21
$(document).ready(function(){
$('input#filter').quicksearch('.AllNews div.NewsSummary', {
'noResults': '#noresults',
'show': function () {
$(this).addClass('shown');
$(this).removeClass('hidden');
},
'hide': function () {
$(this).removeClass('shown');
$(this).addClass('hidden');
},
'onAfter': function () {
$('.AllNews').find('.hidden').each(function(){
$(this).closest('div.category').children('p.category_name:first').hide();
});
$('.AllNews').find('.shown').each(function(){
$(this).closest('div.category').children('p.category_name:first').show();
});
}
});
});
Property changes:
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property