kombai / freewall

Freewall is a cross-browser and responsive jQuery plugin to help you create grid, image and masonry layouts for desktop, mobile, and tablet...
MIT License
1.85k stars 375 forks source link

Constructor name "new freewall" don't pass on jshint tests #161

Closed brunoluiz closed 9 years ago

brunoluiz commented 9 years ago

The constructor "new freewall(string)" don't pass on jshint tests because the right way to instantiate objects in JS is using a initial capital letter, as "new Freewall(string)".

Using the actual method will make gulp/grunt jshint throw an error and then stop the process (in most cases). I changed all the references to Freewall, so it is working now.

kombai commented 9 years ago

Thanks