1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2025-12-15 15:53:55 +00:00

Added title support to xmessage

This commit is contained in:
Bryan Roe
2020-04-26 02:56:03 -07:00
parent 2717134c50
commit de4c507b57
3 changed files with 13 additions and 13 deletions

View File

@@ -211,7 +211,7 @@ function Toaster()
{
if (require('message-box').xmessage)
{
retVal._mb = require('message-box').create('Mesh Central', caption, 5, 'OK');
retVal._mb = require('message-box').create(title, caption, 5, 'OK');
retVal._mb.ret = retVal;
retVal._mb.then(function () { this.ret._res('DISMISSED'); }, function () { this.ret._res('DISMISSED'); });
}