FIX: iPad focusing on the title was messing everything up

This commit is contained in:
Robin Ward 2015-11-10 14:33:15 -05:00
parent 395d01c5f9
commit afe9f90f2b
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ export default Ember.Component.extend({
@on('didInsertElement')
_focusOnReply() {
if (!Discourse.Mobile.mobileView) {
if (!this.capabilities.touch) {
this.$('input').putCursorAtEnd();
}
},