From 888611f531954fce50b7b0e753788d0803e723d8 Mon Sep 17 00:00:00 2001 From: Hadi Nategh Date: Mon, 27 Jan 2014 16:36:49 +0000 Subject: [PATCH] No need to pass event param as the first argument to edit_series function, if there's no event, since the function controls the arguments by itself --- calendar/js/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/calendar/js/app.js b/calendar/js/app.js index 9f759b7a85..3a34356146 100644 --- a/calendar/js/app.js +++ b/calendar/js/app.js @@ -268,7 +268,7 @@ app.classes.calendar = AppJS.extend( } else { - that.edit_series(event,eventId,startDate); + that.edit_series(eventId,startDate); } }, mouseover: function(){ @@ -318,7 +318,7 @@ app.classes.calendar = AppJS.extend( } else { - that.edit_series(event,eventId,startDate); + that.edit_series(eventId,startDate); } }, mouseover: function(){