Skip to content

Commit

Permalink
Merge pull request #123 from internetee/fix-polyfill
Browse files Browse the repository at this point in the history
Updated polyfill host
  • Loading branch information
vohmar authored Jun 28, 2024
2 parents 79f39b8 + e441cf9 commit 6c4b9a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/views/auth/sessions/new.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@
<%= f.label :username, t('.username'), class: 'form--label' %>
<div class="form--field">
<div class="form--input">
<%= f.text_field :username, class: 'input'%>
<%= f.text_field :username, class: 'input', autocomplete: 'username' %>
</div>
</div>
</div>
<div class="form--row">
<%= f.label :password, t('.password'), class: 'form--label' %>
<div class="form--field">
<div class="form--input">
<%= f.password_field :password, class: 'input' %>
<%= f.password_field :password, class: 'input', autocomplete: 'current-password' %>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion app/views/common/_footer.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@
</nav>
</div>
</footer>
<script crossorigin="anonymous" src="https://polyfill.io/v3/polyfill.min.js?features=Array.from%2CArray.prototype.find%2CArray.prototype.includes%2CSymbol%2CSymbol.iterator%2CDOMTokenList%2CObject.assign%2CCustomEvent%2CElement.prototype.classList%2CElement.prototype.closest%2CElement.prototype.dataset"></script>
<script crossorigin="anonymous" src="https://polyfill-fastly.io/v3/polyfill.min.js?features=Array.from%2CArray.prototype.find%2CArray.prototype.includes%2CSymbol%2CSymbol.iterator%2CDOMTokenList%2CObject.assign%2CCustomEvent%2CElement.prototype.classList%2CElement.prototype.closest%2CElement.prototype.dataset"></script>

0 comments on commit 6c4b9a4

Please sign in to comment.