diff options
author | kumavis <aaron@kumavis.me> | 2018-03-29 09:07:02 +0800 |
---|---|---|
committer | kumavis <aaron@kumavis.me> | 2018-03-29 09:07:02 +0800 |
commit | f35356a89a0f2b0eb670394667e9650ab92f03ed (patch) | |
tree | 218880c63f9389c38db49eb4e1e5dd8b2eae00f1 /mascara | |
parent | d06c6bb4cac9a616067e294c8ddefac572b66441 (diff) | |
download | tangerine-wallet-browser-f35356a89a0f2b0eb670394667e9650ab92f03ed.tar.gz tangerine-wallet-browser-f35356a89a0f2b0eb670394667e9650ab92f03ed.tar.zst tangerine-wallet-browser-f35356a89a0f2b0eb670394667e9650ab92f03ed.zip |
mascara - html - fix script locations
Diffstat (limited to 'mascara')
-rw-r--r-- | mascara/proxy/index.html | 4 | ||||
-rw-r--r-- | mascara/ui/index.html | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/mascara/proxy/index.html b/mascara/proxy/index.html index b83fc41af..0dff83f18 100644 --- a/mascara/proxy/index.html +++ b/mascara/proxy/index.html @@ -15,6 +15,6 @@ <body> Hello! I am the MetaMask iframe. - <script src="./proxy.js"></script> + <script src="./scripts/proxy.js"></script> </body> -</html>
\ No newline at end of file +</html> diff --git a/mascara/ui/index.html b/mascara/ui/index.html index eac8e4898..dbc445891 100644 --- a/mascara/ui/index.html +++ b/mascara/ui/index.html @@ -7,6 +7,6 @@ </head> <body> <div id="app-content"></div> - <script src="./ui.js" type="text/javascript" charset="utf-8"></script> + <script src="./scripts/ui.js" type="text/javascript" charset="utf-8"></script> </body> -</html>
\ No newline at end of file +</html> |