Fix IE11 problem with default function param

This commit is contained in:
Unick Soft
2019-03-13 21:45:28 +02:00
parent e1058bbedf
commit 344191ea5f
5 changed files with 60 additions and 10 deletions

View File

@@ -825,8 +825,13 @@ SavedDialogGraphImageHandler.prototype.pathObjects = null;
// Objects.
SavedDialogGraphImageHandler.prototype.objects = null;
SavedDialogGraphImageHandler.prototype.show = function(object, isFull = false)
SavedDialogGraphImageHandler.prototype.show = function(object, isFull)
{
if (isFull === undefined)
{
isFull = false;
}
var showDialogCallback = function ()
{
var dialogButtons = {};