Browse Source

ComposeArea: Use new clear() and focus() methods

Danilo Bargen 6 năm trước cách đây
mục cha
commit
be828b07a7
1 tập tin đã thay đổi với 2 bổ sung3 xóa
  1. 2 3
      src/directives/compose_area.ts

+ 2 - 3
src/directives/compose_area.ts

@@ -257,9 +257,8 @@ export default [
                     if (!composeAreaIsEmpty()) {
                         submitText().then(() => {
                             // Clear compose div
-                            // TODO: Use clear() and focus() methods
-                            composeDiv[0].innerText = '';
-                            composeDiv[0].focus();
+                            composeArea.clear();
+                            composeArea.focus();
 
                             // Send stopTyping event
                             stopTyping();