Angular.JS wrapper for Hubspot Odometer
npm install angular-odometer-js



angular-odometer
==============
Angular.JS directive for Hubspot odometer.
Copyright (C) 2014, Sebastian Wallin
Requirements
-----
* AngularJS (http://angularjs.org)
* Odometer (http://github.hubspot.com/odometer/docs/welcome/)
Install with Bower
-----
```
bower install angular-odometer-js --save
Install with NPM
-----
``
npm install angular-odometer-js --save
Usage
-----
Include angular-odometer.js in your application, as well as the odometer.js and the default theme CSS file
`html
`
Add the module ui.odometer as a dependency to your app:
`js`
var app = angular.module('app', ['ui.odometer']);
Then use the directive on a tag of choice tag and it will convert it to a odometer for you. Examples:
`html
`
Configuration
-----
The options that are sent along to Odometer can be set either
directly in the directive as seen above with odometer-options hash or configured as default parameters via the odometerOptionsProvider:
`js``
angular.module('ui.odometer').config([
'odometerOptionsProvider', function(odometerOptionsProvider) {
odometerOptionsProvider.defaults = {
duration : 3000,
theme : 'digital'
};
}
]);
All the available options can be seen over at the Odometer docs
License
-----
MIT