diff --git a/[esx]/esx_notify/nui/js/script.js b/[esx]/esx_notify/nui/js/script.js index 40afbe62..5122b5a1 100644 --- a/[esx]/esx_notify/nui/js/script.js +++ b/[esx]/esx_notify/nui/js/script.js @@ -5,15 +5,12 @@ $(function () { w.addEventListener('message', function(e) { $(".text").text(e.data.message) if (e.data.type === "info") { - console.log("info") doc.getElementById("notifyInfo").style.display = "block"; Timeout() } else if (e.data.type === "error") { - console.log("error") doc.getElementById("notifyError").style.display = "block"; Timeout() } else if (e.data.type === "success") { - console.log("succeeeess") doc.getElementById("notifySuccess").style.display = "block"; Timeout() } @@ -26,4 +23,4 @@ $(function () { }, e.data.length) } }) -}) \ No newline at end of file +})