UNPKG

ferngully-aurelia-tools

Version:

Ferngully Tools for Aurelia

11 lines 929 B
<template> <!--<require from="./number-input.css"/> <require from="./spinner.css"/>--> <div class="input-group spinner" ref="inputGroup"> <input type="text" class="form-control numberInput" value.bind="target | number" keydown.delegate="return confirmKey($event)" paste.delegate="confirmPaste($event)" autocomplete='off'> <div class="input-group-btn-vertical"> <button type="button" tabindex="-1" class="btn btn-default" keydown.delegate="buttonIncr($event)" mousedown.delegate="startIncr()" mouseup.delegate="mouseexit()" mouseout.delegate="mouseexit()"><i class="fa fa-caret-up"></i></button> <button type="button" tabindex="-1" class="btn btn-default" keydown.delegate="buttonDecr($event)" mousedown.delegate="startDecr()" mouseup.delegate="mouseexit()" mouseout.delegate="mouseexit()"><i class="fa fa-caret-down"></i></button> </div> </div> </template>