Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
my-cucumbers-ru-github-io
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Лотуга Данила Сергеевич
my-cucumbers-ru-github-io
Commits
55a49bee
Commit
55a49bee
authored
Dec 09, 2012
by
Evgeny Zhlobo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add braces to all if
parent
57ec98d1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
shower.js
shower.js
+8
-4
No files found.
shower.js
View file @
55a49bee
...
@@ -379,8 +379,9 @@ window.shower = (function(window, document, undefined) {
...
@@ -379,8 +379,9 @@ window.shower = (function(window, document, undefined) {
// NOTE: we should update hash to get things work properly
// NOTE: we should update hash to get things work properly
url
.
hash
=
'#'
+
slideId
;
url
.
hash
=
'#'
+
slideId
;
if
(
isHistoryApiSupported
)
if
(
isHistoryApiSupported
)
{
history
.
replaceState
(
null
,
null
,
url
.
pathname
+
'?full#'
+
slideId
);
history
.
replaceState
(
null
,
null
,
url
.
pathname
+
'?full#'
+
slideId
);
}
shower
.
enterSlideMode
();
shower
.
enterSlideMode
();
shower
.
updateProgress
(
shower
.
getCurrentSlideNumber
());
shower
.
updateProgress
(
shower
.
getCurrentSlideNumber
());
...
@@ -456,9 +457,10 @@ window.shower = (function(window, document, undefined) {
...
@@ -456,9 +457,10 @@ window.shower = (function(window, document, undefined) {
if
(
!
shower
.
isListMode
())
{
if
(
!
shower
.
isListMode
())
{
// "?full" is present without slide hash, so we should display first slide
// "?full" is present without slide hash, so we should display first slide
if
(
-
1
===
shower
.
getCurrentSlideNumber
())
{
if
(
-
1
===
shower
.
getCurrentSlideNumber
())
{
if
(
isHistoryApiSupported
)
if
(
isHistoryApiSupported
)
{
history
.
replaceState
(
null
,
null
,
url
.
pathname
+
'?full'
+
shower
.
getSlideHash
(
0
));
history
.
replaceState
(
null
,
null
,
url
.
pathname
+
'?full'
+
shower
.
getSlideHash
(
0
));
}
}
}
shower
.
enterSlideMode
();
shower
.
enterSlideMode
();
shower
.
updateProgress
(
shower
.
getCurrentSlideNumber
());
shower
.
updateProgress
(
shower
.
getCurrentSlideNumber
());
...
@@ -519,8 +521,9 @@ window.shower = (function(window, document, undefined) {
...
@@ -519,8 +521,9 @@ window.shower = (function(window, document, undefined) {
if
(
shower
.
isListMode
()
&&
-
1
!==
currentSlideNumber
)
{
if
(
shower
.
isListMode
()
&&
-
1
!==
currentSlideNumber
)
{
e
.
preventDefault
();
e
.
preventDefault
();
if
(
isHistoryApiSupported
)
if
(
isHistoryApiSupported
)
{
history
.
pushState
(
null
,
null
,
url
.
pathname
+
'?full'
+
shower
.
getSlideHash
(
currentSlideNumber
));
history
.
pushState
(
null
,
null
,
url
.
pathname
+
'?full'
+
shower
.
getSlideHash
(
currentSlideNumber
));
}
shower
.
enterSlideMode
();
shower
.
enterSlideMode
();
shower
.
updateProgress
(
currentSlideNumber
);
shower
.
updateProgress
(
currentSlideNumber
);
...
@@ -533,8 +536,9 @@ window.shower = (function(window, document, undefined) {
...
@@ -533,8 +536,9 @@ window.shower = (function(window, document, undefined) {
if
(
!
shower
.
isListMode
())
{
if
(
!
shower
.
isListMode
())
{
e
.
preventDefault
();
e
.
preventDefault
();
if
(
isHistoryApiSupported
)
if
(
isHistoryApiSupported
)
{
history
.
pushState
(
null
,
null
,
url
.
pathname
+
shower
.
getSlideHash
(
currentSlideNumber
));
history
.
pushState
(
null
,
null
,
url
.
pathname
+
shower
.
getSlideHash
(
currentSlideNumber
));
}
shower
.
enterListMode
();
shower
.
enterListMode
();
shower
.
scrollToSlide
(
currentSlideNumber
);
shower
.
scrollToSlide
(
currentSlideNumber
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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