]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/js/tinymce/plugins/fullscreen/plugin.js
WordPress 4.2
[autoinstalls/wordpress.git] / wp-includes / js / tinymce / plugins / fullscreen / plugin.js
index e5187015263ee3e865b91efc3fec3ce2dd2196fd..2a3cf20efc0582b1e257ef4ee6fba965f6bfc14d 100644 (file)
@@ -89,7 +89,7 @@ tinymce.PluginManager.add('fullscreen', function(editor) {
        }
 
        editor.on('init', function() {
-               editor.addShortcut('Ctrl+Alt+F', '', toggleFullscreen);
+               editor.addShortcut('Meta+Alt+F', '', toggleFullscreen);
        });
 
        editor.on('remove', function() {
@@ -102,7 +102,7 @@ tinymce.PluginManager.add('fullscreen', function(editor) {
 
        editor.addMenuItem('fullscreen', {
                text: 'Fullscreen',
-               shortcut: 'Ctrl+Alt+F',
+               shortcut: 'Meta+Alt+F',
                selectable: true,
                onClick: toggleFullscreen,
                onPostRender: function() {
@@ -117,7 +117,7 @@ tinymce.PluginManager.add('fullscreen', function(editor) {
 
        editor.addButton('fullscreen', {
                tooltip: 'Fullscreen',
-               shortcut: 'Ctrl+Alt+F',
+               shortcut: 'Meta+Alt+F',
                onClick: toggleFullscreen,
                onPostRender: function() {
                        var self = this;