summaryrefslogtreecommitdiff
path: root/min_selfservice/js/menu.js
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2018-10-01 12:03:01 -0700
committerIvan Kohler <ivan@freeside.biz>2018-10-01 12:03:01 -0700
commitd5988a9f7a3617de33da3058f2e9f1151b24420e (patch)
tree3ed8d80cd6a81f160c76c90fcf089e81fe7ffddf /min_selfservice/js/menu.js
parent1ab515df162a76347d8146cae4ff34656cc4bcd3 (diff)
parentb6088672c87e2c5984183326b4c0e2d9bd6c34f6 (diff)
Merge branch 'master' of git.freeside.biz:/home/git/freeside
Diffstat (limited to 'min_selfservice/js/menu.js')
-rw-r--r--min_selfservice/js/menu.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/min_selfservice/js/menu.js b/min_selfservice/js/menu.js
deleted file mode 100644
index 30e481621..000000000
--- a/min_selfservice/js/menu.js
+++ /dev/null
@@ -1,17 +0,0 @@
-$(document).ready(function() {
- $('#menu_ul > li').hover(function(){
- $('a:first', this).addClass('hover');
- $('ul:first', this).show();
- if ($('.current_menu:first', this).length == 0) {
- $('img[src*="dropdown_arrow_white"]', this).show();
- $('img[src*="dropdown_arrow_grey"]', this).hide();
- }
- }, function(){
- $('ul:first', this).hide();
- $('a:first', this).removeClass('hover');
- if ($('.current_menu:first', this).length == 0) {
- $('img[src*="dropdown_arrow_white"]', this).hide();
- $('img[src*="dropdown_arrow_grey"]', this).show();
- }
- });
-});