Skip to content

Commit b8efbd6

Browse files
committed
Build: Change single quotes to double quotes.
1 parent ab84e03 commit b8efbd6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ var
7373
},
7474
main: {
7575
options: {
76-
keepSpecialComments: '*'
76+
keepSpecialComments: "*"
7777
},
7878
src: "dist/jquery-ui.css",
7979
dest: "dist/jquery-ui.min.css"

build/tasks/build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ grunt.registerMultiTask( "zip", "Create a zip file for release", function() {
140140
cmd: "zip",
141141
args: [ "-r", dest, this.data.src ],
142142
opts: {
143-
cwd: 'dist'
143+
cwd: "dist"
144144
}
145145
}, function( err ) {
146146
if ( err ) {

build/tasks/testswarm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ function submit( commit, runs, configFile, version, done ) {
5353
} )
5454
.addjob(
5555
{
56-
name: 'jQuery UI ' + version + '#<a href="https://github.com/jquery/jquery-ui/commit/' + commit + '">' + commit.substr( 0, 10 ) + '</a>',
56+
name: "jQuery UI " + version + "#<a href='https://github.com/jquery/jquery-ui/commit/" + commit + "'>" + commit.substr( 0, 10 ) + "</a>",
5757
runs: runs,
5858
runMax: config.runMax,
5959
browserSets: config.browserSets

0 commit comments

Comments
 (0)