Skip to content

Commit

Permalink
🎨 Remove unnecessary backslashes in domain pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
richardfrost committed Nov 23, 2024
1 parent e32afcc commit d8edbca
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 @@ -376,7 +376,7 @@ <h4 id="domainFrameModeHeader" class="sectionHeader">Frame Mode</h4>
<h4 id="domainsHeader" class="sectionHeader">Domains</h4>
<select id="domainSelect" class="w3-select w3-border small textInput" style="display:block"></select>
<h4 id="domainHeader" class="sectionHeader">Domain</h4>
<input id="domainText" class="w3-input w3-border small" type="text" pattern="^([a-zA-Z0-9\.-]+\.[a-zA-Z0-9\.-]+|localhost)$"/>
<input id="domainText" class="w3-input w3-border small" type="text" pattern="^([a-zA-Z0-9.-]+\.[a-zA-Z0-9.-]+|localhost)$"/>
<span id="domainTextNote" class="notes">Example: 'google.com' or 'mail.google.com'</span>

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

0 comments on commit d8edbca

Please sign in to comment.