Commit 00ff0ec6 authored by Alexander Yuzhin's avatar Alexander Yuzhin

Fix Bug 33945

parent 3f42ce46
......@@ -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) {
......
......@@ -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) {
......
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