Skip to content

Instantly share code, notes, and snippets.

@cloudmanic
Created March 1, 2016 17:32
Show Gist options
  • Save cloudmanic/25b7f6909795c7cf8393 to your computer and use it in GitHub Desktop.
Save cloudmanic/25b7f6909795c7cf8393 to your computer and use it in GitHub Desktop.
//
// Load knob
//
app.directive('knob', function($compile, $rootScope) {
return {
link: function(scope, element, attrs) {
// Jquery Knob
setTimeout(function () {
$(element).knob({
'min': 0,
'max': 100,
readOnly: true,
bgColor: 'rgba(255,255,255,.24)',
fgColor: '#7bb724',
displayInput : false,
angleOffset: 270,
linecap: 'butt',
width: 88,
height: 88,
thickness: 0.16,
font: '',
fontWeight: '300',
inputColor: '#fff'
});
}, 1000);
}
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment