Add braces to all if

This commit is contained in:
Evgeny Zhlobo 2012-12-09 15:23:47 +03:00
parent 57ec98d173
commit 55a49beed0
1 changed files with 8 additions and 4 deletions

View File

@ -379,8 +379,9 @@ window.shower = (function(window, document, undefined) {
// NOTE: we should update hash to get things work properly
url.hash = '#' + slideId;
if (isHistoryApiSupported)
if (isHistoryApiSupported) {
history.replaceState(null, null, url.pathname + '?full#' + slideId);
}
shower.enterSlideMode();
shower.updateProgress(shower.getCurrentSlideNumber());
@ -456,8 +457,9 @@ window.shower = (function(window, document, undefined) {
if ( ! shower.isListMode()) {
// "?full" is present without slide hash, so we should display first slide
if (-1 === shower.getCurrentSlideNumber()) {
if (isHistoryApiSupported)
if (isHistoryApiSupported) {
history.replaceState(null, null, url.pathname + '?full' + shower.getSlideHash(0));
}
}
shower.enterSlideMode();
@ -519,8 +521,9 @@ window.shower = (function(window, document, undefined) {
if (shower.isListMode() && -1 !== currentSlideNumber) {
e.preventDefault();
if (isHistoryApiSupported)
if (isHistoryApiSupported) {
history.pushState(null, null, url.pathname + '?full' + shower.getSlideHash(currentSlideNumber));
}
shower.enterSlideMode();
shower.updateProgress(currentSlideNumber);
@ -533,8 +536,9 @@ window.shower = (function(window, document, undefined) {
if ( ! shower.isListMode()) {
e.preventDefault();
if (isHistoryApiSupported)
if (isHistoryApiSupported) {
history.pushState(null, null, url.pathname + shower.getSlideHash(currentSlideNumber));
}
shower.enterListMode();
shower.scrollToSlide(currentSlideNumber);
}