Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwclouser@mozilla.com <wclouser@mozilla.com@4eb1ac78-321c-0410-a911-ec516a8615a5>2009-02-04 21:10:56 (GMT)
committer wclouser@mozilla.com <wclouser@mozilla.com@4eb1ac78-321c-0410-a911-ec516a8615a5>2009-02-04 21:10:56 (GMT)
commit58acbe119778d36967ec5cf0d3cb469ae9ce9822 (patch)
tree21a973b27f196b5a6df879c429f3c2b21f43d6d4
parentc3aadfa3f65e9646298233437279fa72938350c4 (diff)
Fix advanced search conflicts; bug 454638
git-svn-id: http://svn.mozilla.org/addons/trunk@22007 4eb1ac78-321c-0410-a911-ec516a8615a5
-rw-r--r--site/app/views/layouts/mozilla.thtml13
1 files changed, 0 insertions, 13 deletions
diff --git a/site/app/views/layouts/mozilla.thtml b/site/app/views/layouts/mozilla.thtml
index 863a79e..69bac08 100644
--- a/site/app/views/layouts/mozilla.thtml
+++ b/site/app/views/layouts/mozilla.thtml
@@ -222,19 +222,6 @@
}
return false;
});
-
- //JS for making sure advanced search type and normal search category don't conflict
- var cat = $("#category");
- cat.change(function() {
- atyp = document.getElementById('atype');
- atyp.selectedIndex = 0;
- });
-
- var addontype = $("#atype");
- addontype.change(function() {
- ctgry = document.getElementById('category');
- ctgry.selectedIndex = 0;
- });
<?php //to handle js-less case when a advanced query is sent there is one form, so have to add back hidden
// form for js-aware case.