FIX: iPad focusing on the title was messing everything up
This commit is contained in:
parent
395d01c5f9
commit
afe9f90f2b
|
@ -5,7 +5,7 @@ export default Ember.Component.extend({
|
||||||
|
|
||||||
@on('didInsertElement')
|
@on('didInsertElement')
|
||||||
_focusOnReply() {
|
_focusOnReply() {
|
||||||
if (!Discourse.Mobile.mobileView) {
|
if (!this.capabilities.touch) {
|
||||||
this.$('input').putCursorAtEnd();
|
this.$('input').putCursorAtEnd();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue