Changeset 2768744
- Timestamp:
- 08/10/2022 08:20:46 AM (4 years ago)
- Location:
- comment-mention/trunk
- Files:
-
- 4 edited
-
README.md (modified) (2 diffs)
-
app/assets/js/mentions.js (modified) (1 diff)
-
comment-mention.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
comment-mention/trunk/README.md
r2766739 r2768744 6 6 - **Tested up to:** 6.0.1 7 7 - **Requires PHP:** 5.6 8 - **Stable tag:** 1. 3.38 - **Stable tag:** 1.4.0 9 9 - **License:** GPLv2 or later 10 10 - **License URI:** http://www.gnu.org/licenses/gpl-2.0.html … … 53 53 ## Changelog ## 54 54 55 ### 1.4.0 ### 56 * Added support for TinyMCE. 57 55 58 ### 1.3.3 ### 56 59 * Minor bug fixes. -
comment-mention/trunk/app/assets/js/mentions.js
r2766739 r2768744 245 245 $( '.bbp-topic-form form textarea' ).cmt_mntn_mentions( cmt_mntn.mentions.users ); 246 246 $( '.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 }; 247 257 }); 248 258 -
comment-mention/trunk/comment-mention.php
r2766739 r2768744 7 7 * Text Domain: comment-mention 8 8 * Domain Path: /languages 9 * Version: 1. 3.39 * Version: 1.4.0 10 10 * 11 11 * @package Comment_Mention … … 22 22 * The version of the plugin. 23 23 */ 24 define( 'CMT_MNTN_VERSION', '1. 3.3' );24 define( 'CMT_MNTN_VERSION', '1.4.0' ); 25 25 } 26 26 if ( ! defined( 'CMT_MNTN_PATH' ) ) { -
comment-mention/trunk/readme.txt
r2766739 r2768744 5 5 Requires at least: 4.6 6 6 Tested up to: 6.0.1 7 Stable tag: 1. 3.37 Stable tag: 1.4.0 8 8 Requires PHP: 5.6 9 9 License: GPLv2 or later … … 64 64 == Changelog == 65 65 66 = 1.4.0 = 67 * Added support for TinyMCE. 68 66 69 = 1.3.3 = 67 70 * Minor bug fixes.
Note: See TracChangeset
for help on using the changeset viewer.