darsain / sly

JavaScript library for one-directional scrolling with item based navigation support.
http://darsa.in/sly
2.87k stars 497 forks source link

vendor prefixes are case sensitive #202

Closed flexphperia closed 9 years ago

flexphperia commented 9 years ago

In line 2048 we have: var prefixes = ['', 'webkit', 'moz', 'ms', 'o'];

and should be: var prefixes = ['', 'Webkit', 'Moz', 'ms', 'O'];

see here for details: http://blogs.msdn.com/b/thebeebs/archive/2012/01/11/with-vendor-prefixes-what-is-the-javascript-equivalent-of-ms.aspx

darsain commented 9 years ago

Thx :) Thought it was all starting with lowercase.