repo.or.cz
/
deck.js.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #32 from dougireton/slide_section
[deck.js.git]
/
introduction
/
introduction.js
blob
df37aeb3413c063444c444ffe5984f15a87057c6
1
$(
function
() {
2
// Deck initialization
3
$.
deck
(
'.slide'
);
4
5
$(
'#style-themes'
).
change
(
function
() {
6
$(
'#style-theme-link'
).
attr
(
'href'
, $(
this
).
val
());
7
});
8
9
$(
'#transition-themes'
).
change
(
function
() {
10
$(
'#transition-theme-link'
).
attr
(
'href'
, $(
this
).
val
());
11
});
12
});
13