Add braces to all if
This commit is contained in:
parent
57ec98d173
commit
55a49beed0
12
shower.js
12
shower.js
|
@ -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,8 +457,9 @@ 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();
|
||||||
|
@ -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) {
|
||||||
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);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue