diff options
| author | Chris Rebert <[email protected]> | 2014-01-31 14:13:27 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2014-01-31 14:13:27 -0800 |
| commit | 362708acdd1f75bf5ccbcd98dfbb5e005297921b (patch) | |
| tree | 2ba854afe232ec6423cd52a7b8172ee80ebf2baa | |
| parent | 58bf3f9432e81a450b241134f2e0c319de41146d (diff) | |
| parent | 623d6507581c881f4ade642536858053d5323b09 (diff) | |
| download | bootstrap-362708acdd1f75bf5ccbcd98dfbb5e005297921b.tar.xz bootstrap-362708acdd1f75bf5ccbcd98dfbb5e005297921b.zip | |
Merge pull request #12480 from twbs/clarify-jquery-err-msg
Clarify JS error message about missing jQuery
| -rw-r--r-- | Gruntfile.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index ec9fb594e..f7d3fbc57 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -32,7 +32,7 @@ module.exports = function (grunt) { ' * Copyright 2011-<%= grunt.template.today("yyyy") %> <%= pkg.author %>\n' + ' * Licensed under <%= _.pluck(pkg.licenses, "type") %> (<%= _.pluck(pkg.licenses, "url") %>)\n' + ' */\n', - jqueryCheck: 'if (typeof jQuery === \'undefined\') { throw new Error(\'Bootstrap requires jQuery\') }\n\n', + jqueryCheck: 'if (typeof jQuery === \'undefined\') { throw new Error(\'Bootstrap\\\'s JavaScript requires jQuery\') }\n\n', // Task configuration. clean: { |
