Hi jasonherndon
Please kindly with my guider:
Open modulesmod_jaslideshow2assetsja.slideshow2.js file, at about line 153, find following code:
//Click on Main image
if (this.options.urls) {
this.maskDesc.addEvent('click', function () {
var url = this.options.urls;
if (url) location.href = url;
}.bind(this));
}
and change to:
//Click on Main image
if (this.options.urls) {
this.maskDesc.addEvent('click', function () {
var url = this.options.urls;
if (url) location.href = url;
}.bind(this));
}
//Click on image
this.divImageElements = this.el.getElement('.ja-slide-item');
this.divImageElements.setStyle('cursor', 'pointer');
if (this.options.urls) {
this.divImageElements.addEvent('click', function () {
var url = this.options.urls;
if (url) location.href = url;
}.bind(this));
}
Hope it helps.