tinymce-knockout-binding
tinymce-knockout-binding copied to clipboard
double pasting
In firefox 31, chrome 37.0.2062.120, and safari a paste operation (Ctrl V) results in a double paste. This does not happen in ie 10. Aside: In Firefox and Chrome the menu edit/paste option is blocked Aside: IE10 pops up the message to use Ctrl V when you use Ctrl V. Actually the menu Edit/Paste selection works. The editor is embedded in html which repeats for each item in a collection of items wysiwyg version 1.1.1 knockout 3.1.0 jquery 2.1.1 tinymce - latest - pulling from cdn
I'm just now having the same problem. Where you able to fix it?
Just remove these lines:
if ( !config['plugins'] ) {
config['plugins'] = [ 'paste' ];
} else if ( $.inArray( 'paste', config['plugins'] ) === -1 ) {
config['plugins'].push( 'paste' );
}
I had the same problem, it turned out that I had the "paste" plugin listed twice in the plugin list.