Merge branch 'gh-pages' of github.com:pepelsbey/shower into gh-pages

This commit is contained in:
Oleg Roschupkin 2011-07-21 21:30:03 +09:00
commit c58e59445a
2 changed files with 10 additions and 1 deletions

View File

@ -38,4 +38,12 @@ Mobile platforms:
* Mobile Safari * Mobile Safari
* Opera Mobile * Opera Mobile
Please address bugs and your suggestions to [Issues](http://github.com/pepelsbey/shower/issues) Please address bugs and your suggestions to [Issues](http://github.com/pepelsbey/shower/issues)
## Usage examples
* [CSS Management](http://pepelsbey.net/pres/css-management/)
* [Dynamic Graphics](http://pepelsbey.net/pres/dynamic-graphics/)
* [Sense Coding](http://pepelsbey.net/pres/sense-coding/)
* [Special Effects Tea](http://pepelsbey.net/pres/special-effects-tea/)
* [Web In Curves](http://pepelsbey.net/pres/web-in-curves/)

View File

@ -65,6 +65,7 @@
} }
function updateProgress(slide_number) { function updateProgress(slide_number) {
if (!progress) return;
progress.style.width = (100 / (slideList.length - 1) * normalizeSlideNumber(slide_number)).toFixed(2) + '%'; progress.style.width = (100 / (slideList.length - 1) * normalizeSlideNumber(slide_number)).toFixed(2) + '%';
} }