In /modules/mod_jaslideshow2/assets/script.js
var childs = this.el.getElements('.ja-slide-item');
childs.each( function(itm, index){
itm.addEvent ('mouseover', this.showDesc.bind(this) );
itm.addEvent ('mouseout', this.hideDesc.bind(this));
}.bind(this) )
this.maskDesc.addEvent ('mouseover', this.showDesc.bind(this) );
this.maskDesc.addEvent ('mouseout', this.hideDesc.bind(this));
} else {
this.maskDesc.setStyle ('opacity', this.options.maskOpacity);
}
} else {
this.maskDesc.setStyle ('opacity', 0 ); SHOULD BE 1
}
this.fxOptions.onComplete = function() {
if (this.options.showDesc) {
this.swapDesc(this.hs.currentIndex);
if (this.options.descMode.test(/load/)){
this.showDesc();
}
}
}.bind(this);
With changing it to 1 the mask works, without that it does not work!