mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
29 lines
866 B
TypeScript
29 lines
866 B
TypeScript
|
|
|
|
angular
|
|
.module('touchspin-tests', ['lm.touchspin'])
|
|
.config(function(touchspinConfigProvider: angularTouchSpin.ITouchSpinConfigProvider) {
|
|
touchspinConfigProvider.defaults(<angularTouchSpin.ITouchSpinOptions>{
|
|
min: 0,
|
|
max: 0,
|
|
step: 0,
|
|
decimals: 0,
|
|
stepInterval: 0,
|
|
forceStepDivisibility: '', // none | floor | round | ceil
|
|
stepIntervalDelay: 0,
|
|
verticalButtons: true,
|
|
verticalUpClass: '',
|
|
verticalDownClass: '',
|
|
initVal: 0,
|
|
prefix: '',
|
|
postfix: '',
|
|
prefixExtraClass: '',
|
|
postfixExtraClass: '',
|
|
mousewheel: true,
|
|
buttonDownClass: '',
|
|
buttonUpClass: '',
|
|
buttonDownTxt: '',
|
|
buttonUpTxt: ''
|
|
});
|
|
});
|