Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Commit

Permalink
Bug 874845 - [SMS] default suggested words should not appear when the…
Browse files Browse the repository at this point in the history
… cursor is focused in the "To" field r=julienw

Moves assignment of x-inputmode to declarative template markup

Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
  • Loading branch information
rwaldron committed May 26, 2013
1 parent 09140a0 commit e8365bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion apps/sms/index.html
Expand Up @@ -249,7 +249,8 @@ <h1 id="messages-edit-mode" data-l10n-id="editMode">Edit mode</h1>

<div id="messages-recipient-tmpl" class="hide">
<!--
<span class="recipient" contenteditable="${editable}"
<span class="recipient" x-inputmode="verbatim"
contenteditable="${editable}"
data-number="${number}" data-source="${source}" data-name="${name}">
${name}
</span>
Expand Down
1 change: 0 additions & 1 deletion apps/sms/js/recipients.js
Expand Up @@ -347,7 +347,6 @@
get: function() {
var node = clone.firstElementChild.cloneNode();
node.isPlaceholder = true;
node.setAttribute('x-inputmode', 'verbatim');
return node;
}
}
Expand Down

0 comments on commit e8365bc

Please sign in to comment.