Skip to content

Commit

Permalink
Removing input message autocomplete (#449)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosvidolin authored and samtstern committed Aug 5, 2019
1 parent ab42581 commit 2accce3
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion cloud-functions-angular-start/src/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ <h3><i class="material-icons">chat_bubble_outline</i> Friendly Chat</h3>
<div *ngIf="topics"><em>Recent topics: {{ topics }}</em></div>
<form id="message-form" (submit)="saveMessage($event, box)">
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
<input #box class="mdl-textfield__input" type="text" id="message"
<input #box class="mdl-textfield__input" type="text" id="message" autocomplete="off"
(keyup)="update(box.value)" (blur)="update(box.value)"
placeholder="Message...">
</div>
Expand Down
2 changes: 1 addition & 1 deletion cloud-functions-angular/src/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ <h3><i class="material-icons">chat_bubble_outline</i> Friendly Chat</h3>
<div *ngIf="topics"><em>Recent topics: {{ topics }}</em></div>
<form id="message-form" (submit)="saveMessage($event, box)">
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
<input #box class="mdl-textfield__input" type="text" id="message"
<input #box class="mdl-textfield__input" type="text" id="message" autocomplete="off"
(keyup)="update(box.value)" (blur)="update(box.value)"
placeholder="Message...">
</div>
Expand Down
2 changes: 1 addition & 1 deletion cloud-functions-start/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ <h3><i class="material-icons">chat_bubble_outline</i> Friendly Chat</h3>
</div>
<form id="message-form" action="#">
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
<input class="mdl-textfield__input" type="text" id="message">
<input class="mdl-textfield__input" type="text" id="message" autocomplete="off">
<label class="mdl-textfield__label" for="message">Message...</label>
</div>
<button id="submit" disabled type="submit" class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect">
Expand Down
2 changes: 1 addition & 1 deletion cloud-functions/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ <h3><i class="material-icons">chat_bubble_outline</i> Friendly Chat</h3>
</div>
<form id="message-form" action="#">
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
<input class="mdl-textfield__input" type="text" id="message">
<input class="mdl-textfield__input" type="text" id="message" autocomplete="off">
<label class="mdl-textfield__label" for="message">Message...</label>
</div>
<button id="submit" disabled type="submit" class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect">
Expand Down
2 changes: 1 addition & 1 deletion performance-monitoring-start/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ <h3><i class="material-icons">chat_bubble_outline</i> Friendly Chat</h3>
</div>
<form id="message-form" action="#">
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
<input class="mdl-textfield__input" type="text" id="message">
<input class="mdl-textfield__input" type="text" id="message" autocomplete="off">
<label class="mdl-textfield__label" for="message">Message...</label>
</div>
<button id="submit" disabled type="submit" class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect">
Expand Down
2 changes: 1 addition & 1 deletion performance-monitoring/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ <h3><i class="material-icons">chat_bubble_outline</i> Friendly Chat</h3>
</div>
<form id="message-form" action="#">
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
<input class="mdl-textfield__input" type="text" id="message">
<input class="mdl-textfield__input" type="text" id="message" autocomplete="off">
<label class="mdl-textfield__label" for="message">Message...</label>
</div>
<button id="submit" disabled type="submit" class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect">
Expand Down
2 changes: 1 addition & 1 deletion web-start/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ <h3><i class="material-icons">chat_bubble_outline</i> Friendly Chat</h3>
</div>
<form id="message-form" action="#">
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
<input class="mdl-textfield__input" type="text" id="message">
<input class="mdl-textfield__input" type="text" id="message" autocomplete="off">
<label class="mdl-textfield__label" for="message">Message...</label>
</div>
<button id="submit" disabled type="submit" class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect">
Expand Down
2 changes: 1 addition & 1 deletion web/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ <h3><i class="material-icons">chat_bubble_outline</i> Friendly Chat</h3>
</div>
<form id="message-form" action="#">
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
<input class="mdl-textfield__input" type="text" id="message">
<input class="mdl-textfield__input" type="text" id="message" autocomplete="off">
<label class="mdl-textfield__label" for="message">Message...</label>
</div>
<button id="submit" disabled type="submit" class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect">
Expand Down

0 comments on commit 2accce3

Please sign in to comment.