Skip to content

Commit

Permalink
#8 improving readability of long DOM strings
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonwebb committed Aug 18, 2020
1 parent 16fe294 commit a4221e9
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions slick/slick.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,14 @@
appendDots: $(element),
arrows: true,
asNavFor: null,
prevArrow: '<button class="slick-prev" type="button"><span class="slick-prev-icon" aria-hidden="true"></span><span class="slick-sr-only">Previous</span></button>',
nextArrow: '<button class="slick-next" type="button"><span class="slick-next-icon" aria-hidden="true"></span><span class="slick-sr-only">Next</span></button>',
prevArrow: '<button class="slick-prev" type="button">'
+ '<span class="slick-prev-icon" aria-hidden="true"></span>'
+ '<span class="slick-sr-only">Previous</span>'
+ '</button>',
nextArrow: '<button class="slick-next" type="button">'
+ '<span class="slick-next-icon" aria-hidden="true"></span>'
+ '<span class="slick-sr-only">Next</span>'
+ '</button>',
autoplay: false,
autoplaySpeed: 3000,
centerMode: false,
Expand Down

0 comments on commit a4221e9

Please sign in to comment.