]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/js/tinymce/plugins/fullscreen/plugin.js
Wordpress 4.6-scripts
[autoinstalls/wordpress.git] / wp-includes / js / tinymce / plugins / fullscreen / plugin.js
index 332951229335a3c39f49efefb879610a9c35535d..59efa5510e16d705141416eee50059bc6586304a 100644 (file)
@@ -104,7 +104,7 @@ tinymce.PluginManager.add('fullscreen', function(editor) {
        }
 
        editor.on('init', function() {
-               editor.addShortcut('Meta+Alt+F', '', toggleFullscreen);
+               editor.addShortcut('Ctrl+Shift+F', '', toggleFullscreen);
        });
 
        editor.on('remove', function() {
@@ -117,7 +117,7 @@ tinymce.PluginManager.add('fullscreen', function(editor) {
 
        editor.addMenuItem('fullscreen', {
                text: 'Fullscreen',
-               shortcut: 'Meta+Alt+F',
+               shortcut: 'Ctrl+Shift+F',
                selectable: true,
                onClick: function() {
                        toggleFullscreen();
@@ -135,7 +135,7 @@ tinymce.PluginManager.add('fullscreen', function(editor) {
 
        editor.addButton('fullscreen', {
                tooltip: 'Fullscreen',
-               shortcut: 'Meta+Alt+F',
+               shortcut: 'Ctrl+Alt+F',
                onClick: toggleFullscreen,
                onPostRender: function() {
                        var self = this;