mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
Update Gruntfile.js fixing undefined jQuery check
The check to see if jQuery was defined as incorrect causing the "Bootstrap requires jQuery" message to only be displayed if jQuery is defined and has a value which equates to `false`.
This commit is contained in:
parent
1809894e8a
commit
429e92fd58
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ module.exports = function(grunt) {
|
|||
'*\n' +
|
||||
'* Designed and built with all the love in the world by @mdo and @fat.\n' +
|
||||
'*/\n',
|
||||
jqueryCheck: 'if (!jQuery) { throw new Error(\"Bootstrap requires jQuery\") }\n\n',
|
||||
jqueryCheck: 'if (typeof jQuery === "undefined") { throw new Error(\"Bootstrap requires jQuery\") }\n\n',
|
||||
|
||||
// Task configuration.
|
||||
clean: {
|
||||
|
|
Loading…
Reference in a new issue