message
message copied to clipboard
Custom messages, alerts, confirmations
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...
I believe that text in message should not be selected. Or at least there should be a global option for messages enabling which would stop selecting text. Also cursor should...