From bb2375b15e88144fdc4b4dc694a2864a1ac2c8d8 Mon Sep 17 00:00:00 2001 From: Harry Bomrah Date: Fri, 6 Apr 2012 19:04:58 +0800 Subject: [PATCH] Temp Commit --- app/assets/javascripts/orbitdesktop.js | 30 -------------------------- 1 file changed, 30 deletions(-) diff --git a/app/assets/javascripts/orbitdesktop.js b/app/assets/javascripts/orbitdesktop.js index b6c4c0c4..2bbea3ae 100755 --- a/app/assets/javascripts/orbitdesktop.js +++ b/app/assets/javascripts/orbitdesktop.js @@ -273,33 +273,3 @@ orbitDesktop.prototype.desktopId = "1"; orbitDesktop.prototype.notifyImgPath = "temp"; // devin -(function(){ - $(document).ready(function(){ - var $widget_fn = $('.widget_fn'), - $fn_des = $('.fn_des'); - - $widget_fn.hover(function(){ - var fn_name = $(this).find('img').attr('alt'), - nth = $(this).parents('.d_cate').index(), - des_left = $('.dock_child').eq(nth).width(); - - - $(this).addClass('thmc1'); - $fn_des - .text(fn_name) - .css({ - 'top':nth * 60, - 'left': des_left + 60 - }) - .stop(true, true) - .fadeIn(); - }, function(){ - $(this).removeClass('thmc1'); - $fn_des.stop(true, true).fadeOut(); - }); - - - }); - - -}());