src/cm/media/js/lib/flexible-js-formatting/clip.js
author ymh <ymh.work@gmail.com>
Fri, 14 Mar 2014 13:16:10 +0100
changeset 611 fa66f4bb1563
parent 0 40c8f766c9b8
permissions -rw-r--r--
add some more custom config and put every thing in comment in the custom.yaml template
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
40c8f766c9b8 import from internal svn r 4007
raph
parents:
diff changeset
     1
if (window.clipboardData) {
40c8f766c9b8 import from internal svn r 4007
raph
parents:
diff changeset
     2
    c = window.clipboardData.getData("Text");
40c8f766c9b8 import from internal svn r 4007
raph
parents:
diff changeset
     3
    if (c) {
40c8f766c9b8 import from internal svn r 4007
raph
parents:
diff changeset
     4
        document.write("<p>The contents of your clipboard:</p>");
40c8f766c9b8 import from internal svn r 4007
raph
parents:
diff changeset
     5
        document.write("<blockquote>" + c + "</blockquote>");
40c8f766c9b8 import from internal svn r 4007
raph
parents:
diff changeset
     6
    }
40c8f766c9b8 import from internal svn r 4007
raph
parents:
diff changeset
     7
}