Fix console directionality

Add dir="ltr" and lang="en" to the console element.

Change-Id: I73e6e35d2045dc4a7af7ab16799d4e0f06af0bec
This commit is contained in:
Amir E. Aharoni 2012-08-15 12:16:43 +03:00
parent d6312c80c4
commit b70f8a064e

View file

@ -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 )