Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

angular-ui-slider

Package Overview
Dependencies
Maintainers
3
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-ui-slider - npm Package Compare versions

Comparing version 0.3.1 to 0.3.2

2

package.json
{
"name": "angular-ui-slider",
"version": "0.3.1",
"version": "0.3.2",
"description": "This directive allows you to add a slider to your form elements.",

@@ -5,0 +5,0 @@ "author": "https://github.com/angular-ui/ui-slider/graphs/contributors",

@@ -179,2 +179,3 @@ /*

}
$(elm).find('.ui-slider-tip').text(ngModel.$viewValue);
}, true);

@@ -210,3 +211,11 @@

if(angular.isDefined(options['tip'])) {
$timeout(function(){element.find('.ui-slider-handle').append('<div class="ui-slider-tip">'+ngModel.$viewValue+'</div>')},10);
$timeout(function(){
var handles = element.find('.ui-slider-handle');
if(handles && handles.length>1 && ngModel.$viewValue && angular.isArray(ngModel.$viewValue)){
$(handles[0]).append('<div class="ui-slider-tip">'+ngModel.$viewValue[0]+'</div>');
$(handles[1]).append('<div class="ui-slider-tip">'+ngModel.$viewValue[1]+'</div>');
}else{
element.find('.ui-slider-handle').append('<div class="ui-slider-tip">'+ngModel.$viewValue+'</div>');
}
},10);
}

@@ -213,0 +222,0 @@ }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc