Correction of NUI Callback

Correction for NUI Callback using the resource with the name of repository
This commit is contained in:
Dione Batista
2020-03-26 18:49:13 -03:00
committed by GitHub
parent 72c4555b55
commit 2f9829c302
+3 -3
View File
@@ -24,7 +24,7 @@ $(".character-box").click(function () {
});
$("#play-char").click(function () {
$.post("http://esx_kashacters/CharacterChosen", JSON.stringify({
$.post("http://esx_kashacter/CharacterChosen", JSON.stringify({
charid: $('.active-char').attr("data-charid"),
ischar: $('.active-char').attr("data-ischar"),
}));
@@ -32,7 +32,7 @@ $("#play-char").click(function () {
});
$("#deletechar").click(function () {
$.post("http://esx_kashacters/DeleteCharacter", JSON.stringify({
$.post("http://esx_kashacter/DeleteCharacter", JSON.stringify({
charid: $('.active-char').attr("data-charid"),
}));
Kashacter.CloseUI();
@@ -69,4 +69,4 @@ $("#deletechar").click(function () {
})
}
})();
})();