diff options
author | Scott González <scott.gonzalez@gmail.com> | 2013-04-08 14:43:37 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2013-04-08 14:44:24 -0400 |
commit | b8efbd6c07ebcab2f2165033fcea9ded1b9a07a2 (patch) | |
tree | 2c260f143fe622b696281e390a5e006cfe66e9c0 | |
parent | ab84e037ed919015e24ac3d7e61960290a6062af (diff) | |
download | jquery-ui-b8efbd6c07ebcab2f2165033fcea9ded1b9a07a2.tar.gz jquery-ui-b8efbd6c07ebcab2f2165033fcea9ded1b9a07a2.zip |
Build: Change single quotes to double quotes.
-rw-r--r-- | Gruntfile.js | 2 | ||||
-rw-r--r-- | build/tasks/build.js | 2 | ||||
-rw-r--r-- | build/tasks/testswarm.js | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index fae88635c..24f84b715 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -73,7 +73,7 @@ var }, main: { options: { - keepSpecialComments: '*' + keepSpecialComments: "*" }, src: "dist/jquery-ui.css", dest: "dist/jquery-ui.min.css" diff --git a/build/tasks/build.js b/build/tasks/build.js index 978bee004..09243cfb6 100644 --- a/build/tasks/build.js +++ b/build/tasks/build.js @@ -140,7 +140,7 @@ grunt.registerMultiTask( "zip", "Create a zip file for release", function() { cmd: "zip", args: [ "-r", dest, this.data.src ], opts: { - cwd: 'dist' + cwd: "dist" } }, function( err ) { if ( err ) { diff --git a/build/tasks/testswarm.js b/build/tasks/testswarm.js index 01fb178f9..e204936cf 100644 --- a/build/tasks/testswarm.js +++ b/build/tasks/testswarm.js @@ -53,7 +53,7 @@ function submit( commit, runs, configFile, version, done ) { } ) .addjob( { - name: 'jQuery UI ' + version + '#<a href="https://github.com/jquery/jquery-ui/commit/' + commit + '">' + commit.substr( 0, 10 ) + '</a>', + name: "jQuery UI " + version + "#<a href='https://github.com/jquery/jquery-ui/commit/" + commit + "'>" + commit.substr( 0, 10 ) + "</a>", runs: runs, runMax: config.runMax, browserSets: config.browserSets |