summaryrefslogtreecommitdiffstats
path: root/core/js
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <JanCBorchardt@fsfe.org>2011-08-08 23:31:58 +0200
committerJan-Christoph Borchardt <JanCBorchardt@fsfe.org>2011-08-08 23:32:09 +0200
commit16bb34cd94d61421a48c1e06ab8f8d5f1d202288 (patch)
tree678117baedebeb1af6bde7e81b584aa68fa15f69 /core/js
parent60133cc58d0cc684178120898fdf8e5ad6cb2159 (diff)
downloadnextcloud-server-16bb34cd94d61421a48c1e06ab8f8d5f1d202288.tar.gz
nextcloud-server-16bb34cd94d61421a48c1e06ab8f8d5f1d202288.zip
settings are now AWESOME
Diffstat (limited to 'core/js')
-rw-r--r--core/js/js.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/core/js/js.js b/core/js/js.js
index 9e2ae8d7104..6ad999878c1 100644
--- a/core/js/js.js
+++ b/core/js/js.js
@@ -264,6 +264,12 @@ $(document).ready(function(){
$('#remember_login+label').fadeIn();
}
});
+
+ if($('body').attr("id")=="body-user") { $('#settings li').hide(); }
+ $('#expand').click(function() {
+ $('#settings li').slideToggle();
+ });
+
});