Type keywords of your course's name or the course code (e.g. PSYCH 2B03)
var showedHelp = false; function showHelp() { if (!showedHelp) { showedHelp = true; this.opts.showHelp = true; this.update(); } } function clearHelp() { this.opts.showHelp = false; this.update(); } function submit(ev) { ev.preventDefault(); console.log("submitted"); this.opts.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.opts.booksLoading = false; this.update(); }).bind(this)); }