Plugin Directory

Changeset 2768744


Ignore:
Timestamp:
08/10/2022 08:20:46 AM (4 years ago)
Author:
hackkzy404
Message:

v1.4.0 release

Location:
comment-mention/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • comment-mention/trunk/README.md

    r2766739 r2768744  
    66- **Tested up to:** 6.0.1
    77- **Requires PHP:** 5.6
    8 - **Stable tag:** 1.3.3
     8- **Stable tag:** 1.4.0
    99- **License:** GPLv2 or later
    1010- **License URI:** http://www.gnu.org/licenses/gpl-2.0.html
     
    5353## Changelog ##
    5454
     55### 1.4.0 ###
     56* Added support for TinyMCE.
     57
    5558### 1.3.3 ###
    5659* Minor bug fixes.
  • comment-mention/trunk/app/assets/js/mentions.js

    r2766739 r2768744  
    245245        $( '.bbp-topic-form form textarea' ).cmt_mntn_mentions( cmt_mntn.mentions.users );
    246246        $( '.bbp-reply-form form textarea' ).cmt_mntn_mentions( cmt_mntn.mentions.users );
     247        window.onload = function() {
     248            my_timing = setInterval(function(){cmt_mntn_tinymce();},500);
     249            function cmt_mntn_tinymce() {
     250                if (typeof window.tinyMCE !== 'undefined' && window.tinyMCE.activeEditor !== null && typeof window.tinyMCE.activeEditor !== 'undefined') { 
     251                    $( window.tinyMCE.activeEditor.contentDocument.activeElement ).cmt_mntn_mentions( cmt_mntn.mentions.users );
     252                    window.clearInterval(my_timing);
     253                }
     254            }
     255            cmt_mntn_tinymce();
     256        };
    247257    });
    248258
  • comment-mention/trunk/comment-mention.php

    r2766739 r2768744  
    77 * Text Domain:     comment-mention
    88 * Domain Path:     /languages
    9  * Version:         1.3.3
     9 * Version:         1.4.0
    1010 *
    1111 * @package         Comment_Mention
     
    2222     * The version of the plugin.
    2323     */
    24     define( 'CMT_MNTN_VERSION', '1.3.3' );
     24    define( 'CMT_MNTN_VERSION', '1.4.0' );
    2525}
    2626if ( ! defined( 'CMT_MNTN_PATH' ) ) {
  • comment-mention/trunk/readme.txt

    r2766739 r2768744  
    55Requires at least: 4.6
    66Tested up to: 6.0.1
    7 Stable tag: 1.3.3
     7Stable tag: 1.4.0
    88Requires PHP: 5.6
    99License: GPLv2 or later
     
    6464== Changelog ==
    6565
     66= 1.4.0 =
     67* Added support for TinyMCE.
     68
    6669= 1.3.3 =
    6770* Minor bug fixes.
Note: See TracChangeset for help on using the changeset viewer.