mirror of
https://github.com/UnickSoft/graphonline.git
synced 2026-02-16 10:40:57 +00:00
Fix IE11 problem with default function param
This commit is contained in:
@@ -82,8 +82,13 @@ var selectedEdgeStyles = [new SelectedEdgeStyle0(), new SelectedEdgeStyle1(),
|
||||
new SelectedEdgeStyle2(), new SelectedEdgeStyle3(), new SelectedEdgeStyle4()];
|
||||
|
||||
|
||||
function BaseEdgeDrawer(context, drawObjects = null)
|
||||
function BaseEdgeDrawer(context, drawObjects)
|
||||
{
|
||||
if (drawObjects === undefined)
|
||||
{
|
||||
drawObjects = null;
|
||||
}
|
||||
|
||||
this.context = context;
|
||||
|
||||
this.drawObject = null;
|
||||
|
||||
Reference in New Issue
Block a user