Added readme, minor cleanup

This commit is contained in:
ElPumpo
2018-06-09 13:26:35 +02:00
parent ef4934e101
commit 09cb574992
9 changed files with 49 additions and 16 deletions
+38 -2
View File
@@ -1,2 +1,38 @@
# fxserver-esx_menu_list
FXServer ESX Menu List
# esx_menu_list
Advanced menu inputs for ESX
## Download & Installation
### Using [fvm](https://github.com/qlaffont/fvm-installer)
```
fvm install --save --folder=esx esx-org/esx_menu_list
```
### Using Git
```
cd resources
git clone https://github.com/ESX-Org/esx_menu_list [esx]/esx_menu_list
```
### Manually
- Download https://github.com/ESX-Org/esx_menu_list/archive/master.zip
- Put it in the `[esx]` directory
## Installation
- Add this to your `server.cfg`:
```
start esx_menu_list
```
# Legal
### License
esx_menu_list - advanced menu inputs for ESX
Copyright (C) 2015-2018 Jérémie N'gadi
This program Is free software: you can redistribute it And/Or modify it under the terms Of the GNU General Public License As published by the Free Software Foundation, either version 3 Of the License, Or (at your option) any later version.
This program Is distributed In the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty Of MERCHANTABILITY Or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License For more details.
You should have received a copy Of the GNU General Public License along with this program. If Not, see http://www.gnu.org/licenses/.
+10 -10
View File
@@ -1,26 +1,26 @@
resource_manifest_version '44febabe-d386-4d18-afbe-5e627f4af937'
description 'ESX Menu Default'
description 'ESX Menu List'
version '1.0.1'
version '1.0.2'
client_scripts {
'@es_extended/client/wrapper.lua',
'client/main.lua'
}
ui_page {
'html/ui.html'
}
ui_page 'html/ui.html'
files {
'html/ui.html',
'html/css/app.css',
'html/js/mustache.min.js',
'html/js/app.js',
'html/fonts/pdown.ttf',
'html/fonts/bankgothic.ttf',
'html/img/cursor.png',
'html/img/keys/enter.png',
'html/img/keys/return.png',
}
'html/fonts/bankgothic.ttf'
}
dependency 'es_extended'
+1 -1
View File
@@ -9,7 +9,7 @@
}
.menu {
font-family: bankgothic;
font-family: bankgothic;
position : absolute;
left : 50%;
top : 50%;
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1015 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 272 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 941 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 376 B

-3
View File
@@ -3,14 +3,11 @@
<link rel="stylesheet" href="css/app.css" />
</head>
<body>
<div id="menus"></div>
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> -->
<script src="nui://game/ui/jquery.js"></script>
<script src="nui://es_extended/html/js/wrapper.js"></script>
<script src="js/mustache.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>