show labels for brush width

pull/1/head
ansuz 2017-04-03 10:43:57 +02:00
parent 2a6de5163b
commit 4f7e25eeb9
2 changed files with 5 additions and 2 deletions

View File

@ -75,7 +75,7 @@
<div id="controls">
<button id="clear">Clear</button>
<input id="width" type="number" value="5"></input>
<input id="width" type="range" value="5" min="1" max="100"></input><label for="width">5</label>
<div id="colors">&nbsp;</div>
</div>

View File

@ -45,8 +45,11 @@ define([
var $canvasContainer = $('canvas').parents('.canvas-container');
var $width = $('#width');
var $widthLabel = $('label[for="width"]');
var updateBrushWidth = function () {
canvas.freeDrawingBrush.width = Number($width.val());
var val = $width.val();
canvas.freeDrawingBrush.width = Number(val);
$widthLabel.text(val);
};
updateBrushWidth();