1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-23 10:30:04 +01:00
metamask-extension/app/scripts/lib/setupMetamaskMeshMetrics.js

13 lines
382 B
JavaScript
Raw Normal View History

module.exports = setupMetamaskMeshMetrics
/**
2018-04-19 21:12:04 +02:00
* Injects an iframe into the current document for testing
*/
2018-07-03 00:49:33 +02:00
function setupMetamaskMeshMetrics () {
const testingContainer = document.createElement('iframe')
testingContainer.src = 'https://metamask.github.io/mesh-testing/'
console.log('Injecting MetaMask Mesh testing client')
document.head.appendChild(testingContainer)
}