Skip to content

Commit 2f6b898

Browse files
committed
canvas paint fixes
1 parent a3c50ef commit 2f6b898

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bootstrap.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ http.createServer(function (request, response) {
1818

1919
var urlParts = url.parse(request.url);
2020

21+
//console.log(urlParts);
22+
2123
if (urlParts.pathname.split('.').pop() === 'js') {
2224

2325
// not secure but this is a prototype
@@ -41,8 +43,6 @@ http.createServer(function (request, response) {
4143

4244
} else {
4345

44-
console.log(urlParts);
45-
4646
switch(urlParts.pathname) {
4747
case '/':
4848
fs.readFile('client/index.html', function(error, html) {

0 commit comments

Comments
 (0)