Browse Source

Merge pull request #1207 from copperwall/close-autocompleter-after-submit

Hide autocompleter suggestions on message submit
master
Igor Zhukov 8 years ago committed by GitHub
parent
commit
3f4120e50c
  1. 4
      app/js/directives.js

4
app/js/directives.js

@ -1582,6 +1582,8 @@ angular.module('myApp.directives', ['myApp.filters']) @@ -1582,6 +1582,8 @@ angular.module('myApp.directives', ['myApp.filters'])
$(submitBtn).on('mousedown touchstart', onMessageSubmit)
function onMessageSubmit (e) {
var self = this
$timeout(function () {
updateValue()
$scope.draftMessage.send()
@ -1589,6 +1591,8 @@ angular.module('myApp.directives', ['myApp.filters']) @@ -1589,6 +1591,8 @@ angular.module('myApp.directives', ['myApp.filters'])
if (composerEmojiPanel) {
composerEmojiPanel.update()
}
self.hideSuggestions()
}, shouldFocusOnInteraction ? 0 : 100)
return cancelEvent(e)
}

Loading…
Cancel
Save