Fix change listener on calendar list select input

Fixes #2353
pull/13/head
Francis Lachapelle 2013-09-12 16:24:14 -04:00
parent 7241e3e30e
commit 24c0fb1cc4
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ function onComponentEditorLoad(event) {
initializeClassificationMenu();
var list = $("calendarList");
if (list) {
list.on("change", onChangeCalendar, false);
list.on("change", onChangeCalendar);
list.fire("mousedown");
}