summaryrefslogtreecommitdiff
path: root/src/scaladoc/scala/tools/nsc/doc/html/resource/lib/template.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/scaladoc/scala/tools/nsc/doc/html/resource/lib/template.js')
-rw-r--r--src/scaladoc/scala/tools/nsc/doc/html/resource/lib/template.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/scaladoc/scala/tools/nsc/doc/html/resource/lib/template.js b/src/scaladoc/scala/tools/nsc/doc/html/resource/lib/template.js
index 50804c029f..b0719b1ed5 100644
--- a/src/scaladoc/scala/tools/nsc/doc/html/resource/lib/template.js
+++ b/src/scaladoc/scala/tools/nsc/doc/html/resource/lib/template.js
@@ -92,7 +92,8 @@ $(document).ready(function() {
return isHidden(this);
}).removeClass("in").addClass("out");
- $("#mbrsel > div.toggle").click(function() {
+ $("#memberfilter > i.arrow").click(function() {
+ $(this).toggleClass("rotate");
$("#filterby").toggle();
});
@@ -311,7 +312,9 @@ $(document).ready(function() {
});
$("#mbrsel-input").on("blur", function() {
- $("#memberfilter > .clear").hide();
+ setTimeout(function() {
+ $("#memberfilter > .clear").hide();
+ }, 10);
});
});