1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 18:00:18 +01:00

Delete window.js (#8521)

This commit is contained in:
Whymarrh Whitby 2020-05-05 19:11:16 -02:30 committed by GitHub
parent aac16b7134
commit 664cac0bd5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,27 +0,0 @@
class WindowPlatform {
/**
* Reload the platform
*/
reload () {
/** @type {any} */ (global).location.reload()
}
/**
* Opens a window
* @param {{url: string}} opts - The window options
*/
openWindow (opts) {
/** @type {any} */ (global).open(opts.url, '_blank')
}
/**
* Returns the platform version
* @returns {string}
*/
getVersion () {
return '<unable to read version>'
}
}
export default WindowPlatform