Commit b577e147 authored by Oleg Korshul's avatar Oleg Korshul

mobile (not worked)

parent 7a64195c
This diff is collapsed.
......@@ -444,7 +444,7 @@ function CEditorPage(api)
if (this.m_oApi.isMobileVersion)
{
this.MobileTouchManager = new AscCommon.CMobileTouchManager();
this.MobileTouchManager = new AscCommon.CMobileTouchManager({});
this.MobileTouchManager.Init(this);
}
......@@ -2353,7 +2353,7 @@ function CEditorPage(api)
if (oThis.m_oApi.isMobileVersion)
{
oThis.MobileTouchManager = new AscCommon.CMobileTouchManager();
oThis.MobileTouchManager = new AscCommon.CMobileTouchManager({});
oThis.MobileTouchManager.Init(oThis);
}
......
......@@ -43,9 +43,9 @@
/**
* @extends {AscCommon.CMobileTouchManagerBase}
*/
function CMobileTouchManager()
function CMobileTouchManager(_config)
{
CMobileTouchManager.superclass.constructor.call(this);
CMobileTouchManager.superclass.constructor.call(this, _config);
this.LogicDocument = null;
this.DrawingDocument = null;
......
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