tweak popup

git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@192 2a923420-c742-0410-a762-8d5b09965624
This commit is contained in:
hummypkg 2011-06-22 00:32:13 +00:00
parent 7400437a1f
commit 8e839121de
1 changed files with 5 additions and 2 deletions

View File

@ -14,8 +14,11 @@ $(document).ready(function() {
'&service=' +
escape($(this).attr('name'));
$('#result_txt').load(url, function() {
$('#results').show('slow');
$('#results').delay(3000).hide('slow');
if ($('#results').is(":visible") == false)
{
$('#results').show('slow');
$('#results').delay(3000).hide('slow');
}
});
});
});