feat(client/interface): close functions for input and alert dialogs

This commit is contained in:
Luke
2022-09-29 11:39:30 +02:00
parent e624aa2559
commit 6a8eb35a0a
6 changed files with 33 additions and 0 deletions

View File

@@ -21,6 +21,17 @@ function lib.alertDialog(data)
return Citizen.Await(alert)
end
function lib.closeAlertDialog()
if not alert then return end
alert:resolve(nil)
alert = nil
SetNuiFocus(false, false)
SendNUIMessage({
action = 'closeAlertDialog'
})
end
RegisterNUICallback('closeAlert', function(data, cb)
cb(1)
SetNuiFocus(false, false)