message icon indicating copy to clipboard operation
message copied to clipboard

readme alert subtypes are missing the text attribute

Open KonradHoeffner opened this issue 8 years ago • 0 comments

Is:

dhtmlx.message({ type:"error", "Critical error!"});
//or
dhtmlx.message({ type:"alert-error", "Critical error!"});
 //or
dhtmlx.message({ type:"confirm-error", "Confirm self-destruction!"});

Should be:

dhtmlx.message({ type:"error", text:"Critical error!"});
//or
dhtmlx.message({ type:"alert-error", text:"Critical error!"});
 //or
dhtmlx.message({ type:"confirm-error", text:"Confirm self-destruction!"});

KonradHoeffner avatar Jul 14 '17 14:07 KonradHoeffner