Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
server
team-presentation
Commits
be76bf3d
Commit
be76bf3d
authored
Mar 24, 2012
by
Hakim El Hattab
Browse files
classList polyfill included for ie9
parent
87529c4a
Changes
3
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
be76bf3d
...
...
@@ -64,6 +64,8 @@ Reveal.initialize({
-
Config option for disabling updates to URL, defaults to true
-
Anchors with image children no longer rotate in 3D on hover
-
Support for mouse wheel navigation (
[
naugtur
](
https://github.com/naugtur
)
)
-
Delayed updates to URL hash to work around a bug in Chrome
-
Included a classList polyfill for IE9
#### 1.1
...
...
index.html
View file @
be76bf3d
...
...
@@ -209,7 +209,11 @@
</div>
<script
src=
"js/reveal.js"
></script>
<!-- Optional libraries for code syntax highlighting and classList support in IE9 -->
<script
src=
"lib/highlight.js"
></script>
<script
src=
"lib/classList.js"
></script>
<script>
// Parse the query string into a key/value object
var
query
=
{};
...
...
lib/classList.js
0 → 100644
View file @
be76bf3d
// classList polyfill from https://github.com/remy/polyfills/blob/master/classList.js
(
function
(){
function
c
(
a
){
this
.
_element
=
a
;
if
(
a
.
className
!=
this
.
classCache
){
this
.
_classCache
=
a
.
className
;
var
a
=
this
.
_classCache
.
split
(
"
"
),
b
;
for
(
b
=
0
;
b
<
a
.
length
;
b
++
)
e
.
call
(
this
,
a
[
b
])}}
if
(
!
(
"
undefined
"
===
typeof
Element
||
Element
.
prototype
.
hasOwnProperty
(
"
classList
"
))){
var
d
=
[].
indexOf
,
f
=
[].
slice
,
e
=
[].
push
,
g
=
[].
splice
,
h
=
[].
join
;
c
.
prototype
=
{
add
:
function
(
a
){
e
.
call
(
this
,
a
);
this
.
_element
.
className
=
f
.
call
(
this
,
0
).
join
(
"
"
)},
contains
:
function
(
a
){
return
-
1
!==
d
.
call
(
this
,
a
)},
item
:
function
(
a
){
return
this
[
a
]
||
null
},
remove
:
function
(
a
){
a
=
d
.
call
(
this
,
a
);
g
.
call
(
this
,
a
,
1
);
this
.
_element
.
className
=
f
.
call
(
this
,
0
).
join
(
"
"
)},
toString
:
function
(){
return
h
.
call
(
this
,
"
"
)},
toggle
:
function
(
a
){
-
1
===
d
.
call
(
this
,
a
)?
this
.
add
(
a
):
this
.
remove
(
a
)}};
window
.
DOMTokenList
=
c
;
Element
.
prototype
.
__defineGetter__
(
"
classList
"
,
function
(){
return
new
c
(
this
)})}})();
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment