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
Hello here is my html
<ui-knob id="mainKnob" value="value" options="options1"></ui-knob>
and js
.controller('AwardCtrl', function ($scope, getMembership){ $scope.value = 10; // called service getMembership.getMembership(userid).then(function(data) { $scope.data = data; $scope.value = parseInt(data.membership); }); $scope.options1 = { animate : { enabled: true, duration: 1500, ease: 'bounce' }, readOnly: true, size: 260, max: 31, subText: { enabled: true, text: 'DAYS LEFT', color: '#f2f2f2;', font: 'auto' }, trackWidth: 55, barWidth: 30, trackColor: '#e6e6e6', barColor: '#81d8cf', dynamicOptions: true } })
But my knob is not updating after $scope.value has changed.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello here is my html
<ui-knob id="mainKnob" value="value" options="options1"></ui-knob>
and js
But my knob is not updating after $scope.value has changed.
The text was updated successfully, but these errors were encountered: