Skip to content

Commit

Permalink
Use text() for token.
Browse files Browse the repository at this point in the history
Signed-off-by: XhmikosR <[email protected]>
  • Loading branch information
XhmikosR committed Dec 28, 2019
1 parent 43e8c3e commit 53f83a2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion scripts/pi-hole/js/groups-adlists.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

var table;
var groups = [];
var token = $("#token").html();
var token = $("#token").text();
var info = null;

function showAlert(type, icon, title, message) {
Expand Down
2 changes: 1 addition & 1 deletion scripts/pi-hole/js/groups-clients.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

var table;
var groups = [];
var token = $("#token").html();
var token = $("#token").text();
var info = null;

function showAlert(type, icon, title, message) {
Expand Down
2 changes: 1 addition & 1 deletion scripts/pi-hole/js/groups-domains.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

var table;
var groups = [];
var token = $("#token").html();
var token = $("#token").text();
var info = null;

function showAlert(type, icon, title, message) {
Expand Down
2 changes: 1 addition & 1 deletion scripts/pi-hole/js/groups.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
/* global moment:false */

var table;
var token = $("#token").html();
var token = $("#token").text();
var info = null;

function showAlert(type, icon, title, message) {
Expand Down

0 comments on commit 53f83a2

Please sign in to comment.