Skip to content

Commit

Permalink
Just corrected mistake in variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
viT-1 committed Sep 22, 2016
1 parent 55f8a25 commit d17a903
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/onload.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function isTouchSupported() {
|| (window.DocumentTouch && document instanceof DocumentTouch)
);

return supports ? strIsSupportedPostfixString : strDoesntSupportedPostfix;
return supports ? strIsSupportedPostfix : strDoesntSupportedPostfix;
}

function isAnimationsSupported() {
Expand All @@ -34,5 +34,5 @@ function isAnimationsSupported() {
}
}

return supports ? strIsSupportedPostfixString : strDoesntSupportedPostfix;
return supports ? strIsSupportedPostfix : strDoesntSupportedPostfix;
}

0 comments on commit d17a903

Please sign in to comment.