put semicolon before plugins
I have a feeling that this is going to be a tough sell, but I think it
would make plugins more portable without problems with asset packager.
Problem:
Nowdays many websites concatenate scripts into one script (e.g. :cache
option in rails). However with function of the form :
(function($) {
... etc
})
can fail if the preceding file doesn't finish off it's commands with a
semicolon.
A better default which would result in better portability of plugins
would be :
;(function($) {
... etc
})
Just a thought ....
weepy