diff options
| author | Chad Kieffer <chad@2tbsp.com> | 2008-12-19 02:02:38 +0000 |
|---|---|---|
| committer | Chad Kieffer <chad@2tbsp.com> | 2008-12-19 02:02:38 +0000 |
| commit | 6a58deb3a13a8e77150b16ba4c1686d58450c65f (patch) | |
| tree | 202233eaf001752e58263333c45b7f6cba86aa13 /themes/admin_default/js | |
| parent | 4a4ec2b48653bf6ce4802c8c81bd743a3dfd04c1 (diff) | |
Missed this in last commit. Say it with me, run svn status before svn ci :)
Diffstat (limited to 'themes/admin_default/js')
| -rw-r--r-- | themes/admin_default/js/ui.init.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/themes/admin_default/js/ui.init.js b/themes/admin_default/js/ui.init.js new file mode 100644 index 00000000..28b5d8c6 --- /dev/null +++ b/themes/admin_default/js/ui.init.js @@ -0,0 +1,17 @@ +$(document).ready(function(){ + + // Add Superfish menu class + $("#gSiteAdminMenu ul.gMenu").addClass("sf-menu sf-navbar"); + + // Superfish menu options + $('ul.sf-menu').superfish({ + delay: 500, + animation: { + opacity:'show', + height:'show' + }, + pathClass: 'current', + speed: 'fast' + }); + +}); |
