This commit is contained in:
Fabian Jakobs 2011-08-19 16:35:17 +02:00
commit 3d277c782f
6 changed files with 6 additions and 6 deletions

View file

@ -8337,7 +8337,7 @@ var TextInput = function(parentNode, host) {
}
});
if ("onbeforecopy" in text) {
if ("onbeforecopy" in text && typeof clipboardData !== "undefined") {
event.addListener(text, "beforecopy", function(e) {
var copyText = host.getCopyText();
if(copyText)

File diff suppressed because one or more lines are too long

View file

@ -7085,7 +7085,7 @@ var TextInput = function(parentNode, host) {
}
});
if ("onbeforecopy" in text) {
if ("onbeforecopy" in text && typeof clipboardData !== "undefined") {
event.addListener(text, "beforecopy", function(e) {
var copyText = host.getCopyText();
if(copyText)

File diff suppressed because one or more lines are too long

View file

@ -7077,7 +7077,7 @@ var TextInput = function(parentNode, host) {
}
});
if ("onbeforecopy" in text) {
if ("onbeforecopy" in text && typeof clipboardData !== "undefined") {
event.addListener(text, "beforecopy", function(e) {
var copyText = host.getCopyText();
if(copyText)

File diff suppressed because one or more lines are too long