Ticket #28612: 28612.patch
File 28612.patch, 961 bytes (added by , 9 years ago) |
---|
-
src/wp-includes/js/tinymce/plugins/wordpress/plugin.js
566 566 wp.autosave.server.triggerSave(); 567 567 } 568 568 } ); 569 570 if ( window.getUserSetting( 'editor_plain_text_paste_warning' ) > 2 ) { 571 editor.settings.paste_plaintext_inform = false; 572 } 569 573 } ); 570 574 575 editor.on( 'PastePlainTextToggle', function( event ) { 576 // Warn twice, then stop. 577 if ( event.state === true ) { 578 var times = window.getUserSetting( 'editor_plain_text_paste_warning' ); 579 580 if ( times < 3 ) { 581 window.setUserSetting( 'editor_plain_text_paste_warning', ++times ); 582 } 583 } 584 }); 585 571 586 /** 572 587 * Experimental: create a floating toolbar. 573 588 * This functionality will change in the next releases. Not recommended for use by plugins.