From d6ca421d5913974b8489f84ea70ebee9637b913a Mon Sep 17 00:00:00 2001 From: Nick O'Leary Date: Fri, 13 Feb 2015 11:05:45 +0000 Subject: [PATCH] Remove unecessary argument to oneditcancel --- public/red/ui/editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/red/ui/editor.js b/public/red/ui/editor.js index 37c164692..9dc12aad5 100644 --- a/public/red/ui/editor.js +++ b/public/red/ui/editor.js @@ -259,7 +259,7 @@ RED.editor = (function() { click: function() { if (editing_node._def) { if (editing_node._def.oneditcancel) { - editing_node._def.oneditcancel.call(editing_node,true); + editing_node._def.oneditcancel.call(editing_node); } } $( this ).dialog( "close" );