Foundation has Range Sliders. You want to use them. Angular Foundation does not support them. This makes you sad.
Not to worry! Foundation Range-Slider Angular is here!
bower install --save foundation-range-slider-angular
angular.module('app', ['foundation-range-slider-angular']);
Check out the demo page to see everything it can do for you.
- Make your changes. Run
grunt serveto preview as you are developing. - Modify the demo page to show off the new feature/bug fix, if necessary.
- Once you are done,
gruntto build the demo site and dist files. http-server demositeto test demo site as it will appear on github.io .- Commit changes, make pull request.
git checkout master- Edit
bower.json, bump"version"number. gruntgit add --all .; git commit -m "New version"git tag vVERSIONwith the new version number, e.g.git tag v0.0.1git push; git push --tags
git checkout gh-pagesgit merge mastergruntgit add --all .; git commit -m "New demo site"git push