davladi

Results 1 comments of davladi

``` var handlerPaste = function handlerPaste(e) { var clipboardData, pastedData; e.stopPropagation(); e.preventDefault(); clipboardData = e.clipboardData || window.clipboardData; pastedData = clipboardData.getData('Text'); exec('insertText', pastedData); } addEventListener(content, 'paste', handlerPaste); ```