From 6d1674bc459357cb94e0aa0aa309c3c07b784cc8 Mon Sep 17 00:00:00 2001 From: Hadi Nategh Date: Fri, 3 Jun 2022 10:47:44 +0200 Subject: [PATCH] Fix egw.tooltip documentation --- api/js/jsapi/egw_global.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/api/js/jsapi/egw_global.d.ts b/api/js/jsapi/egw_global.d.ts index 97092f410e..4e9ab85453 100644 --- a/api/js/jsapi/egw_global.d.ts +++ b/api/js/jsapi/egw_global.d.ts @@ -1214,8 +1214,9 @@ declare interface IegwWndLocal extends IegwGlobal * has to be a jQuery node. * @param _str is the html or text code which should be shown as tooltip. * @param _isHtml true: add a html (no automatic quoting!), false (default): add as text + * @param _options tooltip options */ - tooltipBind(_elem : HTMLElement, _str : string, _isHtml? : boolean); + tooltipBind(_elem : HTMLElement, _str : string, _isHtml? : boolean, _options); /** * Unbinds the tooltip from the given DOM-Node. *