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
var navMarkup =
"<a href=\"#\" title=\"" + settings.prevText + "\" class=\"" + namespaceIndex + "_nav prev\">" + settings.prevText + "</a>" +
"<a href=\"#\" title=\"" + settings.nextText + "\" 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