projects
/
reveal.js.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
06078f9
)
change SlidesNumber position and start page counter at 0 instead 1
author
uriel
<aa@bb.cc>
Thu, 31 Oct 2013 17:47:13 +0000
(19:47 +0200)
committer
uriel
<aa@bb.cc>
Thu, 31 Oct 2013 17:47:13 +0000
(19:47 +0200)
css/reveal.css
patch
|
blob
|
history
js/reveal.js
patch
|
blob
|
history
diff --git
a/css/reveal.css
b/css/reveal.css
index 4e5c8ea512bba7053d1b502b4c8504aed662b167..d5204d0111d636efba935c5bee58f3d47e0896d4 100644
(file)
--- a/
css/reveal.css
+++ b/
css/reveal.css
@@
-486,10
+486,11
@@
body {
opacity: 0.5;
z-index: 31;
width: 110px;
- bottom:
6
0px;
-
righ
t: 11px;
+ bottom:
3
0px;
+
lef
t: 11px;
font-size: 12px;
text-align: center;
+ letter-spacing: 0px
}
/*********************************************
diff --git
a/js/reveal.js
b/js/reveal.js
index 136dc93386e243323dfe0641edc2932266a5f0a0..619d8d2d31d08b6a7c80af2c44099761abd02996 100644
(file)
--- a/
js/reveal.js
+++ b/
js/reveal.js
@@
-1791,9
+1791,9
@@
var Reveal = (function(){
var element = dom.slideNumber;
// change the number of the page using 'indexh - indexv' format
- var indexString =
( indexh + 1 ).toString()
;
+ var indexString =
indexh
;
if( indexv > 0 ) {
- indexString += ' - ' + indexv
.toString()
;
+ indexString += ' - ' + indexv;
}
element.innerHTML = indexString;