Type a few words of your course's name or the course code (e.g. PSYCH 2B03)
function submit(ev) { ev.preventDefault(); console.log("submitted"); this.booksLoading = true; this.update(); results_passer.trigger("loading"); var params = $(ev.currentTarget).serialize(); $.getJSON("/search/fc?"+params, (function(courses) { var fcourses = filterCourses(courses); var cgroups = groupsof(3, fcourses); results_passer.trigger("new_results", cgroups); this.booksLoading = false; this.update(); }).bind(this)); }