mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-11-24 00:05:00 +00:00
Fix console directionality
Add dir="ltr" and lang="en" to the console element. Change-Id: I73e6e35d2045dc4a7af7ab16799d4e0f06af0bec
This commit is contained in:
parent
d6312c80c4
commit
b70f8a064e
|
@ -350,7 +350,9 @@ mw.scribunto.edit = {
|
||||||
id: 'mw-scribunto-input',
|
id: 'mw-scribunto-input',
|
||||||
'class': 'mw-scribunto-input',
|
'class': 'mw-scribunto-input',
|
||||||
wrap: 'off',
|
wrap: 'off',
|
||||||
rows: 1
|
rows: 1,
|
||||||
|
dir: 'ltr',
|
||||||
|
lang: 'en'
|
||||||
})
|
})
|
||||||
.bind( 'keydown', inputKeydown )
|
.bind( 'keydown', inputKeydown )
|
||||||
.bind( 'focus', inputFocus )
|
.bind( 'focus', inputFocus )
|
||||||
|
|
Loading…
Reference in a new issue