It’s sure that is easy and there are a configuration option, but i dont find it.
In JA Slideshow Lite, i click in edit in one image and I put a url in the opcion “Link:”
When in my portal, i do click in this image, open this url in the same window.
I don’t want to put the code in description, but i want to open this url in a new window… where is the option for put target = “_blank”?
In the code of modules/mod_slideshowlite/assets/js/scripts.js i can do this… over the line 465
if (url) {
e.stop();
if (target == '_blank'){
window.open(url, 'JAWindow');
} else {
// my change
//window.location.href = url;
window.open(url, 'JAWindow');
}
}
But, if target is a variable, this variable must be iniciated… where is this option?
A lot of thanks