GRN2-xx: Cleaned up Javascript Complaints from Scrutinizer (#557)

* First step

* Fix flash issue
This commit is contained in:
farhatahmad
2019-06-13 10:48:06 -04:00
committed by Jesus Federico
parent cb939735bc
commit 78c9903f7c
3 changed files with 16 additions and 16 deletions

View File

@ -78,9 +78,9 @@ function searchPage() {
var action = $("body").data('action');
// Check if the user filtered by role
role = new URL(location.href).searchParams.get('role')
var role = new URL(location.href).searchParams.get('role')
url = window.location.pathname + "?page=1&search=" + search
var url = window.location.pathname + "?page=1&search=" + search
if (role) {
url += "&role=" + role
@ -99,9 +99,9 @@ function clearSearch() {
var controller = $("body").data('controller');
var action = $("body").data('action');
role = new URL(location.href).searchParams.get('role')
var role = new URL(location.href).searchParams.get('role')
url = window.location.pathname + "?page=1"
var url = window.location.pathname + "?page=1"
if (role) {
url += "&role=" + role