mirror of
https://github.com/UnickSoft/graphonline.git
synced 2026-04-10 09:46:17 +00:00
Fix IE11 problem with default function param
This commit is contained in:
@@ -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 = {};
|
||||
|
||||
Reference in New Issue
Block a user