mirror of
https://github.com/flarum/core.git
synced 2025-07-30 21:20:24 +02:00
Condense into value/oninput into bidi
This commit is contained in:
6
js/forum/dist/app.js
vendored
6
js/forum/dist/app.js
vendored
@@ -24094,16 +24094,14 @@ System.register('flarum/components/LogInModal', ['flarum/components/Modal', 'fla
|
||||
'div',
|
||||
{ className: 'Form-group' },
|
||||
m('input', { className: 'FormControl', name: 'email', type: 'text', placeholder: extractText(app.translator.trans('core.forum.log_in.username_or_email_placeholder')),
|
||||
value: this.email(),
|
||||
oninput: m.withAttr('value', this.email),
|
||||
bidi: this.email,
|
||||
disabled: this.loading })
|
||||
),
|
||||
m(
|
||||
'div',
|
||||
{ className: 'Form-group' },
|
||||
m('input', { className: 'FormControl', name: 'password', type: 'password', placeholder: extractText(app.translator.trans('core.forum.log_in.password_placeholder')),
|
||||
value: this.password(),
|
||||
oninput: m.withAttr('value', this.password),
|
||||
bidi: this.password,
|
||||
disabled: this.loading })
|
||||
),
|
||||
m(
|
||||
|
Reference in New Issue
Block a user