mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 14:03:48 +03:00
41313f6993
refs https://github.com/TryGhost/Team/issues/1734 - resolves some deprecations raised by the addon which has fallen out of regular maintenance - we were largely overriding much of the addon so the additional code was minimal, most of the changes were from updating to modern patterns
20 lines
526 B
Handlebars
20 lines
526 B
Handlebars
<span class="x-file-input" {{on "change" this.onChange}} ...attributes>
|
|
<input
|
|
type="file"
|
|
id={{this.inputId}}
|
|
class="x-file--input"
|
|
name={{@name}}
|
|
disabled={{@disabled}}
|
|
multiple={{@multiple}}
|
|
accept={{@accept}}
|
|
{{on "change" this.onChange}}
|
|
{{did-insert this.registerFileInput}}
|
|
>
|
|
<label for="{{this.inputId}}">
|
|
{{#if (has-block)}}
|
|
{{yield}}
|
|
{{else}}
|
|
{{this.alt}}
|
|
{{/if}}
|
|
</label>
|
|
</span> |