Browse Source

Added title for Next and Prev link.

pull/23/head
Geckotokay 13 years ago
parent
commit
40f330174d
  1. 4
      responsiveslides.js

4
responsiveslides.js

@ -182,8 +182,8 @@
// Build navigation
var navMarkup =
"<a href=\"#\" class=\"" + namespaceIndex + "_nav prev\">" + settings.prevText + "</a>" +
"<a href=\"#\" class=\"" + namespaceIndex + "_nav next\">" + settings.nextText + "</a>";
"<a href=\"#\" title=\"" + settings.prevText + "\" class=\"" + namespaceIndex + "_nav prev\">" + settings.prevText + "</a>" +
"<a href=\"#\" title=\"" + settings.nextText + "\" class=\"" + namespaceIndex + "_nav next\">" + settings.nextText + "</a>";
// Inject navigation
$this.after(navMarkup);

Loading…
Cancel
Save