From 90f4a1f9dbfb98e45f9fac7deb71dc3c70eed4ae Mon Sep 17 00:00:00 2001 From: Jan Schneider Date: Thu, 18 Feb 2010 23:33:19 +0100 Subject: [PATCH] Fix method name. --- kronolith/js/kronolith.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kronolith/js/kronolith.js b/kronolith/js/kronolith.js index 0987ddbbf..a22ed8a88 100644 --- a/kronolith/js/kronolith.js +++ b/kronolith/js/kronolith.js @@ -2028,13 +2028,13 @@ KronolithCore = { { if ($('kronolithCalendarDialog')) { RedBox.showHtml($('kronolithCalendarDialog').show()); - this.editCalendar(calendar); + this.editCalendarCallback(calendar); } else { RedBox.loading(); this.doAction('ChunkContent', { chunk: 'calendar' }, function(r) { if (r.response.chunk) { RedBox.showHtml(r.response.chunk); - this.editCalendar(calendar); + this.editCalendarCallback(calendar); } else { this.closeRedBox(); } @@ -2048,7 +2048,7 @@ KronolithCore = { * * @param string calendar Calendar type and calendar id, separated by '|'. */ - editCalendar: function(calendar) + editCalendarCallback: function(calendar) { calendar = calendar.split('|'); var type = calendar[0]; -- 2.11.0