chore(): update dependencies

This commit is contained in:
Manu Mtz.-Almeida
2018-04-22 20:08:02 +02:00
parent 3f8fcda366
commit ae0541a465
48 changed files with 1299 additions and 1720 deletions

View File

@ -59,11 +59,11 @@ export class RangeKnob {
render() {
if (this.pin) {
return [
<div class='range-pin' role='presentation'>{this.val}</div>,
<div class='range-knob' role='presentation' />
<div class="range-pin" role="presentation">{this.val}</div>,
<div class="range-knob" role="presentation" />
];
}
return <div class='range-knob' role='presentation' />;
return <div class="range-knob" role="presentation" />;
}
}