mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 17:14:36 +01:00
Convert et2_widget_image.js to TS and fixes types for show_dialog
This commit is contained in:
parent
e0bc769315
commit
c280207de1
@ -560,8 +560,8 @@ class et2_dialog extends et2_widget {
|
|||||||
* @param {string} _icon URL of an icon to display. If not provided, a type-specific icon will be used.
|
* @param {string} _icon URL of an icon to display. If not provided, a type-specific icon will be used.
|
||||||
* @param {string|egw} _egw_or_appname egw object with already laoded translations or application name to load translations for
|
* @param {string|egw} _egw_or_appname egw object with already laoded translations or application name to load translations for
|
||||||
*/
|
*/
|
||||||
static show_dialog(_callback, _message, _title, _value, _buttons, _type, _icon, _egw_or_appname) {
|
static show_dialog(_callback? : Function, _message? : string, _title? : string, _value? : object, _buttons?, _type? : number, _icon? : string, _egw_or_appname? : string | IegwAppLocal) {
|
||||||
var parent = et2_dialog._create_parent(_egw_or_appname);
|
let parent = et2_dialog._create_parent(_egw_or_appname);
|
||||||
|
|
||||||
// Just pass them along, widget handles defaults & missing
|
// Just pass them along, widget handles defaults & missing
|
||||||
return et2_createWidget("dialog", {
|
return et2_createWidget("dialog", {
|
||||||
|
Loading…
Reference in New Issue
Block a user