diff options
| author | Chris Rebert <[email protected]> | 2013-09-29 15:37:22 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2013-09-29 15:37:22 -0700 |
| commit | 362c9c9f89a39b6e365595efd35f2566275ddc01 (patch) | |
| tree | ffd75e1c2df7932b933e82724b6ce14f8bdf0c44 | |
| parent | a84bd5d9f153ffae914f8660a77534fb120ca551 (diff) | |
| download | bootstrap-362c9c9f89a39b6e365595efd35f2566275ddc01.tar.xz bootstrap-362c9c9f89a39b6e365595efd35f2566275ddc01.zip | |
rm unnecessary backslashes from jqueryCheck
| -rw-r--r-- | Gruntfile.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index f1ae2266f..92e927ebc 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 (typeof jQuery === "undefined") { throw new Error(\"Bootstrap requires jQuery\") }\n\n', + jqueryCheck: 'if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery") }\n\n', // Task configuration. clean: { |
