0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Merge pull request #1245 from StevenMcD/issue/1007

Issue/1007: Corrected the behaviour of the HOME and END keys on the Code...
This commit is contained in:
Hannah Wolfe 2013-10-24 07:24:41 -07:00
commit ebef969f49

View file

@ -410,7 +410,11 @@
tabMode: 'indent',
tabindex: "2",
lineWrapping: true,
dragDrop: false
dragDrop: false,
extraKeys: {
Home: "goLineLeft",
End: "goLineRight"
}
});
this.uploadMgr = new UploadManager(this.editor);