mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-04-07 14:06:16 +08:00
Macros: fix function tooltips
This commit is contained in:
@ -651,6 +651,7 @@ define([], function () {
|
|||||||
close: function(suppressevent) {
|
close: function(suppressevent) {
|
||||||
var $window = this.getChild();
|
var $window = this.getChild();
|
||||||
if (!$window.find('.combobox.open').length) {
|
if (!$window.find('.combobox.open').length) {
|
||||||
|
this.codeEditor.destroy();
|
||||||
Common.UI.Window.prototype.close.call(this, arguments);
|
Common.UI.Window.prototype.close.call(this, arguments);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
1
vendor/ace/ext-tern.js
vendored
1
vendor/ace/ext-tern.js
vendored
@ -1827,6 +1827,7 @@ ace.define("ace/tern/tern_server",["require","exports","module","ace/range","ace
|
|||||||
this.lastAutoCompleteFireTime = null;
|
this.lastAutoCompleteFireTime = null;
|
||||||
this.queryTimeout = 3000;
|
this.queryTimeout = 3000;
|
||||||
if (this.options.queryTimeout && !isNaN(parseInt(this.options.queryTimeout))) this.queryTimeout = parseInt(this.options.queryTimeout);
|
if (this.options.queryTimeout && !isNaN(parseInt(this.options.queryTimeout))) this.queryTimeout = parseInt(this.options.queryTimeout);
|
||||||
|
popupSelectBound = false;
|
||||||
};
|
};
|
||||||
var Pos = function (line, ch) {
|
var Pos = function (line, ch) {
|
||||||
return {
|
return {
|
||||||
|
|||||||
Reference in New Issue
Block a user