Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
JUNCA24 RevealJS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
PGI15-Teaching
JUNCA24 RevealJS
Commits
87529c4a
Commit
87529c4a
authored
13 years ago
by
Hakim El Hattab
Browse files
Options
Downloads
Patches
Plain Diff
delay hash changes to avoid transition lag in chrome and enable history by default (closes #22)
parent
b72bee32
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
index.html
+1
-1
1 addition, 1 deletion
index.html
js/reveal.js
+6
-2
6 additions, 2 deletions
js/reveal.js
with
7 additions
and
3 deletions
index.html
+
1
−
1
View file @
87529c4a
...
...
@@ -225,7 +225,7 @@
progress
:
true
,
// If true; each slide will be pushed to the browser history
history
:
fals
e
,
history
:
tru
e
,
// Flags if mouse wheel navigation should be enabled
mouseWheel
:
true
,
...
...
This diff is collapsed.
Click to expand it.
js/reveal.js
+
6
−
2
View file @
87529c4a
...
...
@@ -74,7 +74,10 @@ var Reveal = (function(){
document
.
body
.
style
[
'
OTransform
'
]
!==
undefined
,
// Throttles mouse wheel navigation
mouseWheelTimeout
=
0
;
mouseWheelTimeout
=
0
,
// Delays updates to the URL due to a Chrome thumbnailer bug
writeURLTimeout
=
0
;
/**
* Starts up the slideshow by applying configuration
...
...
@@ -490,7 +493,8 @@ var Reveal = (function(){
updateControls
();
writeURL
();
clearTimeout
(
writeURLTimeout
);
writeURLTimeout
=
setTimeout
(
writeURL
,
1500
);
}
/**
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment