fix eslint

This commit is contained in:
Isaac Connor 2020-02-21 10:29:27 -05:00
parent 93fa1cd03c
commit ce8c8a755c
1 changed files with 22 additions and 23 deletions

View File

@ -117,7 +117,6 @@ function submitToEvents( element ) {
function submitToMontageReview(element) { function submitToMontageReview(element) {
var form = element.form; var form = element.form;
form.action = thisUrl + '?view=montagereview'; form.action = thisUrl + '?view=montagereview';
console.log($j(form).serialize());
window.location.assign('?view=montagereview&'+$j(form).serialize()); window.location.assign('?view=montagereview&'+$j(form).serialize());
history.replaceState(null, null, '?view=montagereview&live=0&' + $j(form).serialize()); history.replaceState(null, null, '?view=montagereview&live=0&' + $j(form).serialize());
} }