summaryrefslogtreecommitdiffstats
path: root/webroot/js/functions.js
diff options
context:
space:
mode:
authorraylu <raylu@mixpanel.com>2011-07-03 20:50:43 -0700
committerraylu <raylu@mixpanel.com>2011-07-03 20:50:43 -0700
commitbb577243f0b467fd718f31959b5afd8d9d9eeae5 (patch)
treed5b32c47c32a3a36e30139d513f129c16407f4e6 /webroot/js/functions.js
parent04d2e16fc5bdfd99d94aa033c1a2da9b9c7801c1 (diff)
downloadotakuhub-bb577243f0b467fd718f31959b5afd8d9d9eeae5.tar.xz
remove lightbox since it is unused
Diffstat (limited to 'webroot/js/functions.js')
-rw-r--r--webroot/js/functions.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/webroot/js/functions.js b/webroot/js/functions.js
index be9a9bb..35e90c1 100644
--- a/webroot/js/functions.js
+++ b/webroot/js/functions.js
@@ -5,35 +5,18 @@
jQuery(document).ready(function($) {
Cufon.replace('h3,h4,h5,.process,#tagline ');
-
//Portfolio Hover Effect
$('.portfolio-small li img, .portfolio-list li img').hover(function() {
-
$(this).children('a').show();
$('.portfolio-small li img, .portfolio-list li img').stop().animate({ opacity: .5 }, 300);
$(this).stop().css('opacity', 1);
-
}, function() {
$('.portfolio-small li img, .portfolio-list li img').stop().animate({ opacity: 1 }, 300);
-
});
//Homepage Screenshot Scroll
$(".scrollable").scrollable();
-
-//LightBox Setup
- $('.portfolio-small a, .portfolio-list a').lightBox({
- fixedNavigation:true,
- overlayOpacity: 0.8,
- imageLoading: 'img/lightbox/lightbox-ico-loading.gif',
- imageBtnClose: 'img/lightbox/lightbox-btn-close.gif',
- imageBtnPrev: 'img/lightbox/lightbox-btn-prev.gif',
- imageBtnNext: 'img/lightbox/lightbox-btn-next.gif',
- imageBlank: 'img/lightbox/lightbox-blank.gif'
-
- });
-
// Tipsy Tooltips
$('.tooltip').tipsy({fade: true});
$('.tooltip.north').tipsy({fade: true, gravity: 's'});