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 serve
to preview as you are developing. - Modify the demo page to show off the new feature/bug fix, if necessary.
- Once you are done,
grunt
to build the demo site and dist files. http-server demosite
to test demo site as it will appear on github.io .- Commit changes, make pull request.
git checkout master
- Edit
bower.json
, bump"version"
number. grunt
git add --all .; git commit -m "New version"
git tag vVERSION
with the new version number, e.g.git tag v0.0.1
git push; git push --tags
git checkout gh-pages
git merge master
grunt
git add --all .; git commit -m "New demo site"
git push