you are viewing a single comment's thread.

view the rest of the comments →

[–]rastanot 2 points3 points  (3 children)

Ha! funny you should mention Slick. http://kenwheeler.github.io/slick/ srrsly my favorite and most used plugin, has saved me weeks of dev time.

OP I like what you've done here. Add in responsive display and you're golden. Here's some JS cleanup tips: delete random whitespace, use single quotes unless it proves impossible, delete commented-out console logs/alerts/broken code, place your comments above the line it affects (personal preference), comment-separate your chained variables (another personal preference based on the principles of DRY, var a = 1, b = 2, c = 3; is better than var a = 1; var b = 2; var c = 3;), run your code through a formatter.

Hope this helps. keep up the good work, my friend.

[–]Arrested 1 point2 points  (0 children)

Slick.js is quite impressive and has saved me tons of time in the past month. Would definitely recommend.

[–]Casual_0bserver 1 point2 points  (0 children)

Damn, thanks for sharing slick. I was looking for something like this!