FIX: prevents a regression where enter wasn't working in inputs
This commit is contained in:
parent
0776340b29
commit
5cd5d5aca5
|
@ -16,7 +16,9 @@ export default Ember.TextField.extend({
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
keyUp() {
|
keyUp(event) {
|
||||||
|
this._super(event);
|
||||||
|
|
||||||
if (this.siteSettings.support_mixed_text_direction) {
|
if (this.siteSettings.support_mixed_text_direction) {
|
||||||
let val = this.value;
|
let val = this.value;
|
||||||
if (isRTL(val)) {
|
if (isRTL(val)) {
|
||||||
|
|
Loading…
Reference in New Issue