mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-25 03:44:29 +03:00
Prevent enter button reloading page when focus is on meta-title in PSM
closes #5854 - adds an action that returns false on form submission
This commit is contained in:
parent
299a0534a6
commit
410116db48
@ -201,6 +201,10 @@ export default Ember.Controller.extend(SettingsMenuMixin, {
|
|||||||
},
|
},
|
||||||
|
|
||||||
actions: {
|
actions: {
|
||||||
|
discardEnter: function () {
|
||||||
|
return false;
|
||||||
|
},
|
||||||
|
|
||||||
togglePage: function () {
|
togglePage: function () {
|
||||||
var self = this;
|
var self = this;
|
||||||
|
|
||||||
|
@ -105,7 +105,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="settings-menu-content">
|
<div class="settings-menu-content">
|
||||||
<form>
|
<form {{action "discardEnter" on="submit"}}>
|
||||||
{{#gh-form-group errors=model.errors property="meta_title"}}
|
{{#gh-form-group errors=model.errors property="meta_title"}}
|
||||||
<label for="meta-title">Meta Title</label>
|
<label for="meta-title">Meta Title</label>
|
||||||
{{gh-input class="post-setting-meta-title" id="meta-title" value=metaTitleScratch name="post-setting-meta-title" focus-out="setMetaTitle" stopEnterKeyDownPropagation="true"}}
|
{{gh-input class="post-setting-meta-title" id="meta-title" value=metaTitleScratch name="post-setting-meta-title" focus-out="setMetaTitle" stopEnterKeyDownPropagation="true"}}
|
||||||
|
Loading…
Reference in New Issue
Block a user