Commit d6e19bb1 authored by Oleg.Korshul's avatar Oleg.Korshul

баг: Чужой курсор и плашка с именем блокирует действия мышкой для расположенных под ними объектов

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@66638 954022d7-b5bf-4e40-9824-e11837661b57
parent e20418cb
...@@ -1000,7 +1000,7 @@ CDrawingCollaborativeTarget.prototype = ...@@ -1000,7 +1000,7 @@ CDrawingCollaborativeTarget.prototype =
{ {
bIsHtmlElementCreate = true; bIsHtmlElementCreate = true;
this.HtmlElement = document.createElement('canvas'); this.HtmlElement = document.createElement('canvas');
this.HtmlElement.style.cssText = "position:absolute;padding:0;margin:0;-webkit-user-select:none;width:1px;height:1px;display:none;z-index:3;"; this.HtmlElement.style.cssText = "pointer-events: none;position:absolute;padding:0;margin:0;-webkit-user-select:none;width:1px;height:1px;display:none;z-index:3;";
this.HtmlElement.width = 1; this.HtmlElement.width = 1;
this.HtmlElement.height = 1; this.HtmlElement.height = 1;
......
...@@ -2081,7 +2081,7 @@ CDrawingCollaborativeTarget.prototype = ...@@ -2081,7 +2081,7 @@ CDrawingCollaborativeTarget.prototype =
{ {
bIsHtmlElementCreate = true; bIsHtmlElementCreate = true;
this.HtmlElement = document.createElement('canvas'); this.HtmlElement = document.createElement('canvas');
this.HtmlElement.style.cssText = "position:absolute;padding:0;margin:0;-webkit-user-select:none;width:1px;height:1px;display:block;z-index:3;"; this.HtmlElement.style.cssText = "pointer-events: none;position:absolute;padding:0;margin:0;-webkit-user-select:none;width:1px;height:1px;display:block;z-index:3;";
this.HtmlElement.width = 1; this.HtmlElement.width = 1;
this.HtmlElement.height = 1; this.HtmlElement.height = 1;
......
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