Преглед изворни кода

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

Danilo Bargen пре 6 година
родитељ
комит
be828b07a7
1 измењених фајлова са 2 додато и 3 уклоњено
  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();