From 28bc5d25c9135fe1586a7bbcf97cadd6b3cfbff5 Mon Sep 17 00:00:00 2001 From: Ophir LOJKINE Date: Tue, 22 Oct 2013 20:22:47 +0200 Subject: [PATCH] Upload to nodejitsu. Fix HTML. --- client-data/board.css | 2 +- client-data/board.html | 6 +++--- client-data/favicon.png | Bin 268 -> 0 bytes client-data/js/board.js | 2 +- package.json | 23 +++++++++++++++-------- 5 files changed, 20 insertions(+), 13 deletions(-) delete mode 100644 client-data/favicon.png diff --git a/client-data/board.css b/client-data/board.css index 008144d..4534caf 100644 --- a/client-data/board.css +++ b/client-data/board.css @@ -81,5 +81,5 @@ html, body, svg { } #chooseSize { - width:5em; + width:100px; } diff --git a/client-data/board.html b/client-data/board.html index a6d344a..f2844e2 100644 --- a/client-data/board.html +++ b/client-data/board.html @@ -6,7 +6,7 @@ WBO - + @@ -33,10 +33,10 @@

Configuration

- +
- + diff --git a/client-data/favicon.png b/client-data/favicon.png deleted file mode 100644 index 158a30d35d0a69a9699c5ba164104492de57df41..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 268 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkEfZ5USyphjw9knavs;lKPHmhI4@(;{=`?IO@55lcIrgfOlk?Kd3C$Lsd%T@q zSpJ>2O`v?W>xL-C%t_1tdOrNmF{^KW;+h4SyOymLb@MG>?I6Ko@wgTe~ HDWM4fHr!)- diff --git a/client-data/js/board.js b/client-data/js/board.js index d40b23b..6ddb457 100644 --- a/client-data/js/board.js +++ b/client-data/js/board.js @@ -77,7 +77,7 @@ Tools.change = function (toolName){ var listener = Tools.curTool.compiledListeners[event]; Tools.board.removeEventListener(event, listener); } - + //Call the callbacks of the old tool Tools.curTool.onquit(newtool); } diff --git a/package.json b/package.json index b252365..255ec19 100644 --- a/package.json +++ b/package.json @@ -1,14 +1,21 @@ { - "keywords" : [ + "keywords": [ "collaborative", "whiteboard" ], - "version" : "0.1.0", - "dependencies" : { - "node-static" : "0.7.x", - "socket.io" : "0.9.x" + "version": "0.1.0-2", + "dependencies": { + "node-static": "0.7.x", + "socket.io": "0.9.x" }, - "name" : "Whitebophir", - "description" : "Online collaborative whiteboard", - "main" : "./server/server.js" + "scripts": { + "start": "node ./server/server.js" + }, + "name": "Whitebophir", + "description": "Online collaborative whiteboard", + "main": "./server/server.js", + "subdomain": "wbo", + "engines": { + "node": "0.10.x" + } }