
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
angular-odometer-js
Advanced tools
Angular.JS directive for Hubspot odometer.
Copyright (C) 2014, Sebastian Wallin sebastian.wallin@gmail.com
bower install angular-odometer-js --save
npm install angular-odometer-js --save
Include angular-odometer.js
in your application, as well as the odometer.js
and the default theme CSS file
<script src="components/odometer/odometer.js"></script>
<script src="components/angular-odometer/dist/angular-odometer.js"></script>
<link rel="stylesheet" href="components/odometer/themes/odometer-theme-minimal.css"/>
Add the module ui.odometer
as a dependency to your app:
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:
<span odometer="'5'">
<span odometer="visitors">
<span odometer="visitors" odometer-options="{theme: 'digital', duration: 3000}">
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
:
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
MIT
FAQs
Angular.JS wrapper for Hubspot Odometer
We found that angular-odometer-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.