Patrick Shields
Patrick Shields
I feel your pain. I'm trying to implement it and having a tricky time of it. That said, I'm using outside of the GLAMkit framework. The events.urls may as well...
Either of you two figure it out?
Thanks!
Put this in a controller - $scope.progressbar = ngProgressFactory.createInstance(); // create progress bar instance $scope.progressbar.setHeight('8px'); // Set the height $scope.progressbar.setColor('#25c122'); // Set the colour $scope.progressbar.set(percentFinished); On Wed, Oct 14, 2015...
Make sure you inject it. index.html: Controller: .controller('BaseTimerCtrl', function ($scope, $stateParams, ngProgressFactory) { On Wed, Oct 14, 2015 at 8:11 PM Max Starr [email protected] wrote: > Now I'm getting ReferenceError:...