Commit 98784d26 authored by Oleg Korshul's avatar Oleg Korshul

fix bug 36050

parent 0f41083f
...@@ -247,6 +247,9 @@ ...@@ -247,6 +247,9 @@
init : function() init : function()
{ {
if (!this.startData)
return;
switch (this.current.variations[this.currentVariation].initDataType) switch (this.current.variations[this.currentVariation].initDataType)
{ {
case Asc.EPluginDataType.text: case Asc.EPluginDataType.text:
...@@ -374,7 +377,7 @@ ...@@ -374,7 +377,7 @@
onExternalMouseUp : function() onExternalMouseUp : function()
{ {
if (!this.current) if (!this.current || !this.startData)
return; return;
this.startData.setAttribute("type", "onExternalMouseUp"); this.startData.setAttribute("type", "onExternalMouseUp");
......
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