Changeset 27758
- Timestamp:
- 03/26/2014 11:12:48 PM (11 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/js/tinymce/plugins/wpeditimage/plugin.js
r27694 r27758 398 398 399 399 editor.on( 'init', function() { 400 var dom = editor.dom; 401 402 if ( editor.getParam( 'wpeditimage_html5_captions' ) ) { 403 dom.addClass( editor.getBody(), 'html5-captions' ); 404 } 400 var dom = editor.dom, 401 captionClass = editor.getParam( 'wpeditimage_html5_captions' ) ? 'html5-captions' : 'html4-captions'; 402 403 dom.addClass( editor.getBody(), captionClass ); 405 404 406 405 // Add caption field to the default image dialog -
trunk/src/wp-includes/version.php
r27714 r27758 19 19 * @global string $tinymce_version 20 20 */ 21 $tinymce_version = '4020-201403 19a';21 $tinymce_version = '4020-20140326'; 22 22 23 23 /**
Note: See TracChangeset
for help on using the changeset viewer.