mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 06:56:03 +01:00
15 lines
294 B
Lua
15 lines
294 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)
|
|
|
|
RegisterNetEvent('ox_lib:alertDialog', lib.alertDialog)
|