
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
nouislider-angular
Advanced tools
Check demo at http://yankovsky.github.io/nouislider-angular/examples
Updated for New NoUISlider versions
You can pass any nouislider options options to ya-no-ui-slider directive.
npm install nouislider-angular
bower install nouislider-angular
For this directive to work you need to include angular and nouislider js first. Check example to see how it is done.
angular.module('sampleApp', ['ya.nouislider'])
.controller('SampleCtrl', function($scope) {
$scope.options = {
start: [20, 70],
range: {min: 0, max: 100}
}
})
<div ya-no-ui-slider='options'></div>
You can set global configuration value yaNoUiSliderConfig and all nouislider options will inherit from it:
angular.module('sampleApp', ['ya.nouislider'])
.value('yaNoUiSliderConfig', {step: 1})
$scope.eventHandlers = {
update: function(values, handle, unencoded) {},
slide: function(values, handle, unencoded) {},
set: function(values, handle, unencoded) {},
change: function(values, handle, unencoded) {}
}
<div ya-no-ui-slider='options'
ya-no-ui-slider-events='eventHandlers'></div>
<div ya-no-ui-slider='options'
ya-no-ui-slider-disabled='sliderDisabled'
ya-no-ui-slider-handle1-disabled='handle1Disabled'
ya-no-ui-slider-handle2-disabled='handle2Disabled'></div>
Use number to specify delay in ms or use special value "Infinity" to disable updating model on slide event.
<div ya-no-ui-slider='options'
ya-no-ui-slider-slide-debounce='300'></div>
<div ya-no-ui-slider='options'
ya-no-ui-slider-slide-debounce='Infinity'></div>
For development use examples/index.html file and some local web server.
To build minified version use npm run build command.
FAQs
Angular wrapper for nouislider
We found that nouislider-angular demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.