Y
Hacker News
new
|
ask
|
show
|
jobs
Bootstrap.js - An open source project by closed minded individuals?
(
rajivnavada.tumblr.com
)
15 points
by
Rajiv_N
5239 days ago
2 comments
prodigal_erik
5239 days ago
The bug was from
https://github.com/rajivnavada/bootstrap/commit/49d565a6da38...
, which used /bin/cat inappropriately. Parsing x+y is not equivalent to parsing x fully and then y, so javascript-aware tools are required for that sort of packaging.
link
tantalor
5239 days ago
This problem is very prevalent when concatenating JavaScript. The best defense is to prepend a semicolon before anonymous function closures.
For example, see Paul Irish's geo-location shim
https://gist.github.com/366184
link