f3oall / awesome-notifications

Lightweight JavaScript Notifications Library
https://f3oall.github.io/awesome-notifications/
MIT License
286 stars 40 forks source link

confirm/modal title text #8

Closed n-osennij closed 5 years ago

n-osennij commented 5 years ago

Hi! There are no option to change confirm title message - CONFIRMATION REQUIRED. Now modal have only 3 options: modal.okLabel, modal.cancelLabel, modal.maxWidth. Is is possible to add option modal.title?

f3oall commented 5 years ago

It's possible via options override in version 3.0.0

let options = {labels: {confirm: "Confirm label override"}}
this.confirm("Your custom html", onOk, onCancel, options )