Plugin Directory

Changeset 2305468


Ignore:
Timestamp:
05/15/2020 08:45:43 AM (6 years ago)
Author:
modernplugins
Message:

Added quicksubmit keyboard shortcut

Location:
modern-admin-comments
Files:
7 added
3 edited

Legend:

Unmodified
Added
Removed
  • modern-admin-comments/trunk/js/modern-admin-comments.js

    r2273730 r2305468  
    116116        // Init Tinymce
    117117        editor.settings['auto_focus'] = 'replycontent';
     118        editor.settings['init_instance_callback'] = function (editor) {
     119            editor.shortcuts.add("meta+13", "Submit comment", function () {
     120                $('.reply-submit-buttons .save').click();
     121            });
     122        }
    118123        tinymce.init(editor.settings);
    119124        editor.save();
  • modern-admin-comments/trunk/modern-admin-comments.php

    r2288199 r2305468  
    33 * Plugin Name:   Modern Admin Comments by WPMarmite
    44 * Description:   Enhance your administrator/moderator experience in the comments administration pages with a rich text editor.
    5  * Version:       1.0.1
     5 * Version:       1.1
    66 * Author:        Modern Plugins
    77 * Author URI:    https://modernplugins.com/
  • modern-admin-comments/trunk/readme.txt

    r2288199 r2305468  
    55Requires at least: 4.6
    66Tested up to: 5.4
    7 Stable tag: 1.0.1
     7Stable tag: 1.1
    88Requires PHP: 5.6
    99License: GPL v3 or later
     
    1818Comment moderation shouldn’t look like coding. Also, many bloggers don’t know how to deal with HTML tags…
    1919
    20 This simple WordPress plugin fixes this by replacing the quicktags comment editor with a simple TinyMCE rich text editor under the :
     20This simple WordPress plugin fixes this by replacing the quicktags comment editor with a simple TinyMCE rich text editor under the:
    2121
    2222- Reply link,
     
    2828No options. No settings pages.
    2929
    30 Just activate it, and enjoy your new comment editing features !
     30Just activate it, and enjoy your new comment editing features!
    3131
    3232== Credits ==
    3333
    34 [Modern Plugins](https://modernplugins.com/) is a new brand founded by [WPMarmite](https://wpmarmite.com), the WordPress blog where you can find in-depth WordPress tutorials for beginners and honest reviews.
     34[Modern Plugins](https://modernplugins.com/) is a new brand founded by [WPMarmite](https://wpmarmite.com), the WordPress blog where you can find in-depth WordPress tutorials and reviews to help beginners build their website.
    3535
    3636== Installation ==
     
    4343== Frequently Asked Questions ==
    4444
    45 = Does the plugin register TinyMCE on the front end comment form ? =
     45= Does the plugin register TinyMCE on the front end comment form? =
    4646
    4747No. This plugins only enhances the administration experience.
     
    5353
    5454== Changelog ==
     55
     56= 1.1 =
     57* Added the Ctrl/Cmd + Enter keyboard shortcut to publish a quick reply.
    5558
    5659= 1.0.1 =
     
    6568== Upgrade Notice ==
    6669
     70= 1.1 =
     71* Added the Ctrl/Cmd + Enter keyboard shortcut to publish a quick reply.
     72
    6773= 1.0.1 =
    6874* Updated assets
Note: See TracChangeset for help on using the changeset viewer.