From e48e83cb1d7b49c8d21d6388f9b4596a691a1931 Mon Sep 17 00:00:00 2001 From: ewinslow Date: Mon, 14 Feb 2011 23:18:54 +0000 Subject: Removed unnecessary deprecated javascript function git-svn-id: http://code.elgg.org/elgg/trunk@8236 36083f99-b078-4883-b0ff-0f9b5a30f544 --- views/default/js/elgg.php | 68 ----------------------------------------------- 1 file changed, 68 deletions(-) (limited to 'views/default/js/elgg.php') diff --git a/views/default/js/elgg.php b/views/default/js/elgg.php index 872a44e52..6bc048efd 100644 --- a/views/default/js/elgg.php +++ b/views/default/js/elgg.php @@ -63,74 +63,6 @@ $(function() { elgg.trigger_event('init', 'system'); }); - -// reusable slide in/out toggle function -function elgg_slide_toggle(activateLink, parentElement, toggleElement) { - $(activateLink).closest(parentElement).find(toggleElement).animate({"height": "toggle"}, { duration: 400 }); - return false; -} - -// ELGG DROP DOWN MENU -$.fn.elgg_dropdownmenu = function(options) { - -options = $.extend({speed: 350}, options || {}); - -this.each(function() { - - var root = this, zIndex = 5000; - - function getSubnav(ele) { - if (ele.nodeName.toLowerCase() == 'li') { - var subnav = $('> ul', ele); - return subnav.length ? subnav[0] : null; - } else { - - return ele; - } - } - - function getActuator(ele) { - if (ele.nodeName.toLowerCase() == 'ul') { - return $(ele).parents('li')[0]; - } else { - return ele; - } - } - - function hide() { - var subnav = getSubnav(this); - if (!subnav) return; - $.data(subnav, 'cancelHide', false); - setTimeout(function() { - if (!$.data(subnav, 'cancelHide')) { - $(subnav).slideUp(100); - } - }, 250); - } - - function show() { - var subnav = getSubnav(this); - if (!subnav) return; - $.data(subnav, 'cancelHide', true); - $(subnav).css({zIndex: zIndex++}).slideDown(options.speed); - if (this.nodeName.toLowerCase() == 'ul') { - var li = getActuator(this); - $(li).addClass('hover'); - $('> a', li).addClass('hover'); - } - } - - $('ul, li', this).hover(show, hide); - $('li', this).hover( - function() { $(this).addClass('hover'); $('> a', this).addClass('hover'); }, - function() { $(this).removeClass('hover'); $('> a', this).removeClass('hover'); } - ); - -}); - -}; - -