C5 Slideshow Block - Disable Fade

Permalink
I'd like to disable the "fade" on the stock concrete5 slideshow block. Does anyone know how I can do this? Thanks in advance.

 
rrcustom replied on at Permalink Best Answer Reply
Nevermind. I finally just found the spot in the code.

Line 92 in view.php, comment out this line:

before:
fadeDuration:<?=intval($imgInfo['fadeDuration'])?>,

after:
//fadeDuration:<?=intval($imgInfo['fadeDuration'])?>,

Line 39 in view.php:

before:
this.imgInfos[this.imgNum].fadeDuration*1000,'',function(){ccmSlideShowHelper<?=intval($bID)?>.preparefadeOut()});
function(){ccmSlideShowHelper<?=intval($bID)?>.preparefadeOut()});

after:
function(){ccmSlideShowHelper<?=intval($bID)?>.preparefadeOut()});