diff options
mascara - html - fix script locations
-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> |