wezm.net/output/js/application.js

60 lines
1.6 KiB
JavaScript
Raw Normal View History

jQuery(function() {
$('body > header span').click(function() {
$('#menu').slideToggle('normal');
})
2010-03-03 20:47:41 +00:00
/*** Article Search ***/
function reset_search() {
console.log("restoring items");
$('#articles li').css({height: 'auto', opacity: 1.0});
}
2010-03-03 20:47:41 +00:00
function refresh_search(elem) {
2010-07-08 22:23:59 +00:00
var input = $(elem);
var value = input.val() || "";
2010-03-03 20:47:41 +00:00
var q = value.toLowerCase();
$('#articles li').each(function(i) {
var article = $(this);
var style;
if(article.text().toLowerCase().indexOf(q) >= 0) {
style = {height: 'show', opacity: 1.0}
}
else {
style = {height: 'hide', opacity: 0}
}
if(article.css('opacity') != style.opacity) article.animate(style, {queue: false, duration: 500});
});
}
var input = $('#search input');
if(input.length > 0) {
// Setup incremental search on Articles pages
if(input.get(0).hasOwnProperty('onsearch')) {
console.log("Using search event for search");
$('#search label').hide();
2010-07-08 22:23:59 +00:00
input.bind("search", function() { refresh_search(this) });
}
else {
// Poll the field for its value while it has focus
console.log("Using poll mode for search");
var last_value;
input.focus(function() {
last_value = input.val();
input.everyTime('500ms', function() {
if(input.val() != last_value) {
refresh_search(input);
last_value = input.val();
}
});
}).blur(function() {
input.stopTime();
});
}
input.val('');
}
$('#search').show();
});