We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Steps to reproduce: #1. Create a slider with the following properties:
$("#Slider").slider({ from: -50, to: 200, step: 5, dimension: '%', skin: 'blue', scale: ['-50', '|', '0', '|', '50', '|', '100', '|', '150', '|', '200'] }); #2. Load the page. #3. Drag the left slider over "0" marker.
Actual Result: Value label shows "%".
Expected Result: Value label shows "0%".
The text was updated successfully, but these errors were encountered:
temp fix for issue #3
242bafa
Seems like an issue in jquery.numberformatter plugin. I have created a ticket there http://code.google.com/p/jquery-numberformatter/issues/detail?id=60
Pushed temp fix to use "format: { format: "#,##0.##" }" by default.
Sorry, something went wrong.
Awesome. Thanks Egor - love the plugin!
Sent from my iPhone
On Feb 12, 2012, at 4:00 PM, Egor Khmelevreply@reply.github.com wrote:
Seems like a bug in jquery.numberformatter plugin. I have created an issue ticket there http://code.google.com/p/jquery-numberformatter/issues/detail?id=60 Pushed temp fix to use "format: { format: "#,##0.##" }" by default. Reply to this email directly or view it on GitHub: https://github.com/hmelyoff/jslider/issues/3#issuecomment-3930969
Seems like a bug in jquery.numberformatter plugin. I have created an issue ticket there http://code.google.com/p/jquery-numberformatter/issues/detail?id=60
Reply to this email directly or view it on GitHub: https://github.com/hmelyoff/jslider/issues/3#issuecomment-3930969
No branches or pull requests
Steps to reproduce:
#1. Create a slider with the following properties:
$("#Slider").slider({
from: -50,
to: 200,
step: 5,
dimension: '%',
skin: 'blue',
scale: ['-50', '|', '0', '|', '50', '|', '100', '|', '150', '|', '200']
});
#2. Load the page.
#3. Drag the left slider over "0" marker.
Actual Result:
Value label shows "%".
Expected Result:
Value label shows "0%".
The text was updated successfully, but these errors were encountered: