Browse Source

Making it more readable

pull/25/head
Viljami S 13 years ago
parent
commit
ec89915f15
  1. 8
      responsiveslides.js

8
responsiveslides.js

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

Loading…
Cancel
Save