Skip to content

Instantly share code, notes, and snippets.

@sidneycalebe
Last active July 28, 2021 15:53
Show Gist options
  • Save sidneycalebe/10e4c7fb3a163a1b3d98aa4c33ac565e to your computer and use it in GitHub Desktop.
Save sidneycalebe/10e4c7fb3a163a1b3d98aa4c33ac565e to your computer and use it in GitHub Desktop.
function startButtons() {
startDefaultButton()
startAlternativeButton()
}
function startDefaultButton() {
screenWidthVerify() < widthScreenDefault ? showHideDefaultButton('hide') : showHideDefaultButton('show')
}
function startAlternativeButton() {
screenWidthVerify() < widthScreenDefault ? showHideAlternativeButton('show') :showHideAlternativeButton('hide')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment