From 5738327522a74f1a5458d9b568fdf28092aaba23 Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Tue, 2 Oct 2018 20:58:19 +0200 Subject: [PATCH] edit/page: ctrl+S shortkey to save Expected feature from desktop editors. --- edit/page.js | 1 + 1 file changed, 1 insertion(+) diff --git a/edit/page.js b/edit/page.js index 5e38383..522d63e 100644 --- a/edit/page.js +++ b/edit/page.js @@ -39,6 +39,7 @@ CKEDITOR.plugins.add('inlinesave', { ajaxpost.send(data); }, }); + editor.setKeystroke(CKEDITOR.CTRL + 83 /*S*/, 'inlinesave'); editor.ui.addButton( 'Inlinesave', { command: 'inlinesave', label: editor.lang.save.toolbar, -- 2.30.0