Skip to content

Commit

Permalink
🐛 Allow localhost for domain input box
Browse files Browse the repository at this point in the history
  • Loading branch information
richardfrost committed Oct 6, 2022
1 parent 04dcab4 commit 0c14fb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/static/optionPage.html
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ <h4 class="sectionHeader">Frame Mode</h4>
<h4 class="sectionHeader">Domains</h4>
<select id="domainSelect" class="w3-select w3-border small textInput" style="display:block"></select>
<h4 class="sectionHeader">Domain</h4>
<input id="domainText" class="w3-input w3-border small" type="text" pattern="^[a-zA-Z0-9\.-]+\.[a-zA-Z0-9\.-]+$"/>
<input id="domainText" class="w3-input w3-border small" type="text" pattern="^([a-zA-Z0-9\.-]+\.[a-zA-Z0-9\.-]+|localhost)$"/>
<span class="notes">Example: "google.com" or "mail.google.com"</span>

<div style="padding-top: 8px;">
Expand Down

0 comments on commit 0c14fb2

Please sign in to comment.