12 lines
327 B
JavaScript
12 lines
327 B
JavaScript
(function() {
|
|
var params = getAllParameter()
|
|
console.log(params)
|
|
console.log(location)
|
|
var next = `confirm.html?id=${params.id}`
|
|
if (isMobile()) {
|
|
var url = `https://metamask.app.link/dapp/${location.host}/ct/${next}`
|
|
document.getElementById('href').setAttribute('href', url)
|
|
} else {
|
|
// location.href = url
|
|
}
|
|
})() |