Commit f61f980c authored by Igor.Zotov's avatar Igor.Zotov Committed by Alexander.Trofimov

fix bug #15315

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@51709 954022d7-b5bf-4e40-9824-e11837661b57
parent 8d1d6eb7
...@@ -499,7 +499,10 @@ ...@@ -499,7 +499,10 @@
delete doc.body.style["user-select"]; delete doc.body.style["user-select"];
doc.body.style["-webkit-user-select"] = "text"; doc.body.style["-webkit-user-select"] = "text";
doc.body.style.MozUserSelect = "text"; doc.body.style.MozUserSelect = "text";
var _interval_time = 0;
if($.browser["mozilla"])
_interval_time = 10;
// ждем выполнения // ждем выполнения
window.setTimeout( window.setTimeout(
function() { function() {
...@@ -521,7 +524,7 @@ ...@@ -521,7 +524,7 @@
if($.browser["mozilla"]) if($.browser["mozilla"])
t._getStylesSelect(); t._getStylesSelect();
}, },
0); _interval_time);
}, },
pasteAsTextButton: function (callback) { pasteAsTextButton: function (callback) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment