BUGFIX added return false to delete custom rule function

This commit is contained in:
Michael Andrewartha 2009-07-15 22:22:07 +00:00
parent 031b91a791
commit 3a4b0bdfd7

View File

@ -246,6 +246,8 @@
*/ */
$(".customRules .deleteCondition").livequery('click', function() { $(".customRules .deleteCondition").livequery('click', function() {
$(this).parent("li").fadeOut().remove(); $(this).parent("li").fadeOut().remove();
return false;
}); });
/** /**
* Adding a custom rule to a given form * Adding a custom rule to a given form