mirror of
https://github.com/lovasoa/whitebophir
synced 2024-11-10 06:24:17 +00:00
Upload to nodejitsu. Fix HTML.
This commit is contained in:
parent
6888c33e49
commit
28bc5d25c9
5 changed files with 20 additions and 13 deletions
|
@ -81,5 +81,5 @@ html, body, svg {
|
|||
}
|
||||
|
||||
#chooseSize {
|
||||
width:5em;
|
||||
width:100px;
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
<title>WBO</title>
|
||||
<link rel="icon" type="image/png" href="favicon.png" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<link rel="stylesheet" type="text/css" href="board.css"></link>
|
||||
<link rel="stylesheet" type="text/css" href="board.css" />
|
||||
<script type="text/javascript" src="/socket.io/socket.io.js"></script>
|
||||
</head>
|
||||
|
||||
|
@ -33,10 +33,10 @@
|
|||
|
||||
<h3>Configuration</h3>
|
||||
<label for="chooseColor">Color:</label>
|
||||
<input type="color" id="chooseColor" value="black"></input>
|
||||
<input type="color" id="chooseColor" value="black" />
|
||||
<br/>
|
||||
<label for="chooseSize">Size:</label>
|
||||
<input type="range" id="chooseSize" value="10" min="1" max="50" step="1"></input>
|
||||
<input type="range" id="chooseSize" value="10" min="1" max="50" step="1" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 268 B |
|
@ -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);
|
||||
}
|
||||
|
|
23
package.json
23
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"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue