From 11688d3bc587f26fbc0e759950f65e065b26bf73 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 7 Apr 2010 16:25:59 -0400 Subject: [PATCH] dead code --- js/functions.js | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/js/functions.js b/js/functions.js index 6ea6ac76a..c7f83986b 100644 --- a/js/functions.js +++ b/js/functions.js @@ -1676,17 +1676,3 @@ $(document).ready(function(){ }); }); -/** - * Used for replication support - * - * @version $Id$ - */ - -function divShowHideFunc(ahref, id) { - $(ahref).addEvent('click', function() { - if ($(id).getStyle('display')=="none") - $(id).tween('display', 'block'); - else - $(id).tween('display', 'none'); - }); -}