diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2021-04-01 02:44:49 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2021-04-01 02:44:49 +0100 |
commit | 4c0ad53b3a5e11be38a55564a0967029fbf4c4cc (patch) | |
tree | ae272021693e8f7ca53f431a23f10f65978924f0 /media/js/jquery.dropdownPlain.js | |
parent | 8f790309ce9123a0f1e7bafd63b2e5d5e9cf86c9 (diff) | |
download | troggle-4c0ad53b3a5e11be38a55564a0967029fbf4c4cc.tar.gz troggle-4c0ad53b3a5e11be38a55564a0967029fbf4c4cc.tar.bz2 troggle-4c0ad53b3a5e11be38a55564a0967029fbf4c4cc.zip |
culling unused JS
Diffstat (limited to 'media/js/jquery.dropdownPlain.js')
-rw-r--r-- | media/js/jquery.dropdownPlain.js | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/media/js/jquery.dropdownPlain.js b/media/js/jquery.dropdownPlain.js deleted file mode 100644 index 6cdb803..0000000 --- a/media/js/jquery.dropdownPlain.js +++ /dev/null @@ -1,17 +0,0 @@ -$(function(){ - - $("ul.dropdown li").hover(function(){ - - $(this).addClass("hover"); - $('ul:first',this).css('visibility', 'visible'); - - }, function(){ - - $(this).removeClass("hover"); - $('ul:first',this).css('visibility', 'hidden'); - - }); - - $("ul.dropdown li ul li:has(ul)").find("a:first").append(" » "); - -});
\ No newline at end of file |