Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDean Taylor <deanmarktaylor@gmail.com>2013-09-30 00:14:24 +0400
committerDean Taylor <deanmarktaylor@gmail.com>2013-09-30 00:14:24 +0400
commit429e92fd58491acc09e6695e4fb4cf9c39420c44 (patch)
treeba1a5dd1809526fbd1990d8d9a729868ded23ed5 /Gruntfile.js
parent1809894e8a6e82e4871cbb399fc15c7dee306605 (diff)
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`.
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index b7b780f9eb..f1ae2266f5 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -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: {