-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: (esx-radialmenu) 🎨 Run formatter
- Loading branch information
1 parent
cd0f821
commit bcbe7ed
Showing
13 changed files
with
2,287 additions
and
1,942 deletions.
There are no files selected for viewing
257 changes: 166 additions & 91 deletions
257
server-data/resources/[esx_addons]/esx-radialmenu/client/clothing.lua
Large diffs are not rendered by default.
Oops, something went wrong.
634 changes: 327 additions & 307 deletions
634
server-data/resources/[esx_addons]/esx-radialmenu/client/main.lua
Large diffs are not rendered by default.
Oops, something went wrong.
699 changes: 403 additions & 296 deletions
699
server-data/resources/[esx_addons]/esx-radialmenu/client/stretcher.lua
Large diffs are not rendered by default.
Oops, something went wrong.
519 changes: 276 additions & 243 deletions
519
server-data/resources/[esx_addons]/esx-radialmenu/client/trunk.lua
Large diffs are not rendered by default.
Oops, something went wrong.
1,820 changes: 961 additions & 859 deletions
1,820
server-data/resources/[esx_addons]/esx-radialmenu/config.lua
Large diffs are not rendered by default.
Oops, something went wrong.
48 changes: 24 additions & 24 deletions
48
server-data/resources/[esx_addons]/esx-radialmenu/fxmanifest.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
fx_version 'cerulean' | ||
game 'gta5' | ||
lua54 'yes' | ||
description 'esx-radialmenu' | ||
version '1.0.0' | ||
fx_version("cerulean") | ||
game("gta5") | ||
lua54("yes") | ||
description("esx-radialmenu") | ||
version("1.0.0") | ||
|
||
ui_page 'html/index.html' | ||
ui_page("html/index.html") | ||
|
||
shared_scripts { | ||
'@es_extended/imports.lua', | ||
'config.lua', | ||
} | ||
shared_scripts({ | ||
"@es_extended/imports.lua", | ||
"config.lua", | ||
}) | ||
|
||
client_scripts { | ||
'locales/*.lua', | ||
'client/*.lua', | ||
} | ||
client_scripts({ | ||
"locales/*.lua", | ||
"client/*.lua", | ||
}) | ||
|
||
server_scripts { | ||
'locales/*.lua', | ||
'server/*.lua', | ||
} | ||
server_scripts({ | ||
"locales/*.lua", | ||
"server/*.lua", | ||
}) | ||
|
||
files { | ||
'html/index.html', | ||
'html/css/main.css', | ||
'html/js/main.js', | ||
'html/js/RadialMenu.js', | ||
} | ||
files({ | ||
"html/index.html", | ||
"html/css/main.css", | ||
"html/js/main.js", | ||
"html/js/RadialMenu.js", | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 7 additions & 2 deletions
9
server-data/resources/[esx_addons]/esx-radialmenu/html/index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,20 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="utf-8" /> | ||
<title>Radial Menu</title> | ||
<link rel="stylesheet" href="css/main.css"> | ||
<script src="nui://game/ui/jquery.js" type="text/javascript"></script> | ||
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script> | ||
<script src="https://code.jquery.com/ui/1.13.0/jquery-ui.min.js" integrity="sha256-hlKLmzaRlE8SCJC1Kw8zoUbU8BxA+8kR3gseuKfMjxA=" crossorigin="anonymous"></script> | ||
<script src="https://code.jquery.com/jquery-3.6.0.min.js" | ||
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script> | ||
<script src="https://code.jquery.com/ui/1.13.0/jquery-ui.min.js" | ||
integrity="sha256-hlKLmzaRlE8SCJC1Kw8zoUbU8BxA+8kR3gseuKfMjxA=" crossorigin="anonymous"></script> | ||
</head> | ||
|
||
<body> | ||
<script src="js/RadialMenu.js"></script> | ||
<script src="js/main.js"></script> | ||
</body> | ||
|
||
</html> |
48 changes: 24 additions & 24 deletions
48
server-data/resources/[esx_addons]/esx-radialmenu/html/js/RadialMenu.js
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.