mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 15:06:02 +01:00
12 lines
236 B
Lua
12 lines
236 B
Lua
|
|
function lib.alertDialog(data)
|
||
|
|
SetNuiFocus(true, true)
|
||
|
|
SendNUIMessage({
|
||
|
|
action = 'sendAlert',
|
||
|
|
data = data
|
||
|
|
})
|
||
|
|
end
|
||
|
|
|
||
|
|
RegisterNUICallback('closeAlert', function(_, cb)
|
||
|
|
cb(1)
|
||
|
|
SetNuiFocus(false, false)
|
||
|
|
end)
|