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