mirror of
https://github.com/FlipsideCrypto/eth-phishing-detect.git
synced 2026-02-06 11:16:45 +00:00
10 lines
218 B
JavaScript
10 lines
218 B
JavaScript
const why = require('./why')
|
|
|
|
window.addEventListener('load', function() {
|
|
document.querySelector('form').addEventListener('submit', (ev) => {
|
|
ev.preventDefault()
|
|
result.innerText = why(input.value)
|
|
})
|
|
})
|
|
|