Add polyfill for chrome support

This commit is contained in:
ronreg-ribdev 2021-01-02 02:11:35 -08:00
parent 6379f38489
commit e114ebb7c8
4 changed files with 22 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@ -9,11 +9,15 @@
<form> <form>
<label>Urbit ID</label> <label>Urbit ID</label>
<input type="text" id="urbitId"/> <input type="text" id="urbitId"/>
<br/>
<label>Code</label> <label>Code</label>
<input id="urbitCode" type="password" id="urbit_code"/> <input id="urbitCode" type="password" id="urbit_code"/>
<br/>
<button id="saveButton">Save</button> <button id="saveButton">Save</button>
<button id="clearButton">Clear</button> <button id="clearButton">Clear</button>
</form> </form>
<script src="browser-polyfill.min.js"></script>
<script src="options.js"></script> <script src="options.js"></script>
</body> </body>
</html> </html>

File diff suppressed because one or more lines are too long

View File

@ -2,7 +2,7 @@
<html> <html>
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<link rel="stylesheet" href="popp.css"/> <link rel="stylesheet" href="popup.css"/>
</head> </head>
<body> <body>
<h1>Urbit browser manager</h1> <h1>Urbit browser manager</h1>
@ -12,6 +12,7 @@
<button id="options">Options</button> <button id="options">Options</button>
</main> </main>
<script src="browser-polyfill.min.js"></script>
<script src="popup.js"></script> <script src="popup.js"></script>
</body> </body>
</html> </html>