Note this commit leaves out the biggest occurrence of the editor which is the post/topic composer. To avoid major breakage, this replaces it everywhere else it was used: * User preferences (About Me) * Admin Customizations > Text Content * Category Templates * Editing Queued Posts A future commit will replace the main composer with this editor and will remove the unused pagedown code.
25 lines
536 B
Handlebars
25 lines
536 B
Handlebars
<form class="form-horizontal">
|
|
|
|
<div class="control-group">
|
|
<div class="controls">
|
|
<h3>{{i18n 'user.change_about.title'}}</h3>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="control-group">
|
|
<label class="control-label">{{i18n 'user.bio'}}</label>
|
|
<div class="controls">
|
|
{{d-editor value=model.bio_raw}}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="control-group">
|
|
<div class="controls">
|
|
{{#d-button action="changeAbout" class="btn btn-primary"}}
|
|
{{saveButtonText}}
|
|
{{/d-button}}
|
|
</div>
|
|
</div>
|
|
|
|
</form>
|