Skip to content
Add a 'ui-scrollpoint' class to elements when the page scrolls past them.
JavaScript HTML CSS
Branch: master
Clone or download

Latest commit

Fetching latest commit…
Cannot retrieve the latest commit at this time.

Files

Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
demo resetScrollpoint as function Jan 5, 2016
dist 2.1.1 Feb 22, 2016
src moved onScroll and reset functions into controller so that extending … Feb 19, 2016
test refactoring ui-scrollpoint structure Dec 3, 2015
.gitignore Split from old ui-utils Jul 1, 2015
.jshintrc
.travis.yml Upgrade Travis to Node.js 0.12 Aug 4, 2015
LICENSE Split from old ui-utils Jul 1, 2015
README.md Use gulp to release new versions Sep 5, 2015
bower.json Split from old ui-utils Jul 1, 2015
gulpfile.js Use gulp to release new versions Sep 5, 2015
karma.conf.js Use distribution file for tests Jul 31, 2015
package.json

README.md

ui-scrollpoint Build Status npm version Bower version Join the chat at https://gitter.im/angular-ui/ui-scrollpoint

Add a 'ui-scrollpoint' class to elements when the page scrolls past them.

Requirements

  • AngularJS

Usage

You can get it from Bower

bower install angular-ui-scrollpoint

Load the script files in your application:

<script type="text/javascript" src="bower_components/angular/angular.js"></script>
<script type="text/javascript" src="bower_components/angular-ui-scrollpoint/dist/scrollpoint.js"></script>

Add the specific module to your dependencies:

angular.module('myApp', ['ui.scrollpoint', ...])

Development

We use Karma and jshint to ensure the quality of the code. The easiest way to run these checks is to use grunt:

npm install -g gulp-cli
npm install && bower install
gulp

The karma task will try to open Firefox and Chrome as browser in which to run the tests. Make sure this is available or change the configuration in karma.conf.js

Gulp watch

gulp watch will automatically test your code and build a release whenever source files change.

How to release

Use gulp to bump version, build and create a tag. Then push to GitHub:

gulp release [--patch|--minor|--major]
git push --tags origin master # push everything to GitHub

Travis will take care of testing and publishing to npm's registry (bower will pick up the change automatically). Finally create a release on GitHub from the tag created by Travis.

You can’t perform that action at this time.