Browse Source

Allow slides to act as links. Just add a data-link attribute to the img. :)

pull/10/head
Armando Sosa 13 years ago
parent
commit
ee60efe807
  1. 8
      responsiveslides.js

8
responsiveslides.js

@ -32,6 +32,14 @@
if ($this.find($slide).length > 1) {
$slide.each(function (i) {
// linked slide
var link = this.getAttribute('data-link');
if (link) {
$(this).css({'cursor':'pointer'}).click(function(){
location.href=link;
});
};
this.id = slideClassPrefix + i;
});

Loading…
Cancel
Save