diff --git a/apps/documenteditor/mobile/app/controller/add/AddShape.js b/apps/documenteditor/mobile/app/controller/add/AddShape.js index 18537b2e0..a8a83cf23 100644 --- a/apps/documenteditor/mobile/app/controller/add/AddShape.js +++ b/apps/documenteditor/mobile/app/controller/add/AddShape.js @@ -211,7 +211,7 @@ define([ initEvents: function () { var me = this; - $('#add-shape li').single('click', _.buffered(me.onShapeClick, 100, me)); + $('#add-shape li').single('click', _.buffered(me.onShapeClick, 300, me)); }, onShapeClick: function (e) { diff --git a/apps/documenteditor/mobile/app/controller/add/AddTable.js b/apps/documenteditor/mobile/app/controller/add/AddTable.js index 18f24837b..bd9b464ee 100644 --- a/apps/documenteditor/mobile/app/controller/add/AddTable.js +++ b/apps/documenteditor/mobile/app/controller/add/AddTable.js @@ -92,11 +92,11 @@ define([ me.api.asc_GetDefaultTableStyles(); } - $('#add-table li').single('click', _.buffered(this.onStyleClick, 100, this)); + $('#add-table li').single('click', _.buffered(this.onStyleClick, 300, this)); }, onViewRender: function () { - $('#add-table li').single('click', _.buffered(this.onStyleClick, 100, this)); + $('#add-table li').single('click', _.buffered(this.onStyleClick, 300, this)); }, onStyleClick: function (e) {