Skip to content

Instantly share code, notes, and snippets.

@yuta0801
Created November 7, 2019 18:12
Show Gist options
  • Save yuta0801/3103343301cde8a7f6f2f7bd83167ccf to your computer and use it in GitHub Desktop.
Save yuta0801/3103343301cde8a7f6f2f7bd83167ccf to your computer and use it in GitHub Desktop.
function nativeApLoginStart() {
const [d, a] = installVersionCheck(false)
if (d && a) return
const dialogMap = {
Win: {
IE: '#ieInstallDialog',
Edge: '#edgeInstallDialog',
Chrome: '#chromeInstallDialog',
Firefox: '#firefoxInstallDialog',
},
Mac: {
Safari: '#safariInstallDialog',
Chrome: '#chromeInstallDialog',
Firefox: '#firefoxInstallDialog',
}
}
const f = $('#browserType').val()
const e = $('#osType').val()
const dialog = dialogMap[e][f]
$(dialog).dialog('open')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment