Skip to content

Commit c995a70

Browse files
author
Pablo Cantero
committed
Improving the code style
1 parent f09eb6d commit c995a70

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/progress/app.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ app.createServer((req, res) ->
1818
res.end()
1919
).listen(8080)
2020

21-
console.log('Server running at http://localhost:8080/');
21+
console.log 'Server running at http://localhost:8080/'
2222

examples/progress/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
$('#upload_percent').text(data.percent);
1717
$('#upload_status').text(data.status);
1818
$('#upload_filename').text(data.fileName);
19-
}).error(function(){clearInterval(intervalID);});
19+
}).error(function(){clearInterval(intervalID)});
2020
}, 250);
2121
return true;
2222
});

examples/simple/app.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ app.createServer((req, res) ->
1616
res.end()
1717
).listen(8080)
1818

19-
console.log('Server running at http://localhost:8080/');
19+
console.log 'Server running at http://localhost:8080/'
2020

0 commit comments

Comments
 (0)