tinymce-knockout-binding icon indicating copy to clipboard operation
tinymce-knockout-binding copied to clipboard

double pasting

Open pearsonw opened this issue 11 years ago • 3 comments
trafficstars

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

pearsonw avatar Sep 26 '14 22:09 pearsonw

I'm just now having the same problem. Where you able to fix it?

aeinbu avatar Nov 04 '14 15:11 aeinbu

Just remove these lines:

    if ( !config['plugins'] ) {
        config['plugins'] = [ 'paste' ];
    } else if ( $.inArray( 'paste', config['plugins'] ) === -1 ) {
        config['plugins'].push( 'paste' );
    }

zoltankerekes avatar Mar 22 '15 21:03 zoltankerekes

I had the same problem, it turned out that I had the "paste" plugin listed twice in the plugin list.

mpitz avatar Apr 16 '15 14:04 mpitz