module.exports = OpenTorrentAddressModal var {dispatch, dispatcher} = require('../lib/dispatcher') var hx = require('../lib/hx') function OpenTorrentAddressModal (state) { return hx`

` } function handleKeyPress (e) { if (e.which === 13) handleOK() /* hit Enter to submit */ } function handleOK () { dispatch('exitModal') dispatch('addTorrent', document.querySelector('#add-torrent-url').value) }