Rev 36621 | Blame | Compare with Previous | Last modification | View Log | RSS feed
// Beat Plan sidebar handler - opens in new window$(document).on('click', '.beat-plan', function () {window.open(context + "/beatPlanWindow", "BeatPlanner", "width=1400,height=900,scrollbars=yes,resizable=yes");});// Beat Plan Bulk Upload - loads in main content$(document).on('click', '.beat-plan-bulk', function () {doGetAjaxRequestHandler(context + "/beatPlan/bulkUpload", function (response) {$('#main-content').html(response);});});