#13035 refactored password_hash
This commit is contained in:
parent
4391c6370d
commit
ffd46403b2
|
@ -2738,7 +2738,13 @@ function menuTabsShowHide() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function redirectNode(url, target = "_blank") {
|
function redirectNode(url, target = "_blank") {
|
||||||
event.preventDefault();
|
if (
|
||||||
|
typeof event !== "undefined" &&
|
||||||
|
typeof event.preventDefault === "function"
|
||||||
|
) {
|
||||||
|
event.preventDefault();
|
||||||
|
}
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
method: "POST",
|
method: "POST",
|
||||||
url: "ajax.php",
|
url: "ajax.php",
|
||||||
|
|
Loading…
Reference in New Issue