Skip to content

Commit 93c3b6d

Browse files
committed
Version 1.1.1: fix: event being bound over once when page contains more than one editor; Upgraded to Bootstrap 4.6.2
1 parent 9e9d3ec commit 93c3b6d

File tree

4 files changed

+13
-11
lines changed

4 files changed

+13
-11
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
/nbproject/
22
/temp/
3+
*.html
4+
*.svg

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
# jQuery Menu Editor 1.1.0
2-
# >>> [DEMO](https://davicotico.github.io/jQuery-Menu-Editor/)
1+
# jQuery Menu Editor 1.1.1
2+
# >>> [DEMO](https://davidticona.com/demos/jQuery-Menu-Editor/)
33
### Features
44
* Add, Update & Remove items from Menu
55
* Multilevel Drag & Drop
66
* Form Item Editor
7-
* Include IconPicker Plugin (https://victor-valencia.github.com/bootstrap-iconpicker)
8-
* Support to mobile devices
7+
* Include IconPicker Plugin (https://victor-valencia.github.io/bootstrap-iconpicker)
8+
* Support for mobile devices
99
* Load data from JSON string
10-
* The output is a Json string
10+
* The output is a JSON string
1111

1212
This project is based on jQuery-Sortable-lists (v1.4.0) http://camohub.github.io/jquery-sortable-lists/index.html and added many features.
1313

@@ -22,14 +22,14 @@ This project is based on jQuery-Sortable-lists (v1.4.0) http://camohub.github.io
2222
## How to use
2323
### Include the Css and scripts
2424
```html
25-
<!-- the css in the <head> -->
26-
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"/>
25+
<!-- the css inside the <head> -->
26+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-xOolHFLEh07PJGoPkLv1IbcEPTNtaed2xpHsD9ESMhqIYd0nLMwNLD69Npy4HI+N" crossorigin="anonymous">
2727
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css"/>
2828
<link rel="stylesheet" href="bootstrap-iconpicker/css/bootstrap-iconpicker.min.css">
2929

3030
<!-- (Recommended) Just before the closing body tag </body> -->
3131
<script type="text/javascript" src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js'></script>
32-
<script type="text/javascript" src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.bundle.min.js"></script>
32+
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-Fy6S3B9q64WdZWQUiU+q4/2Lc9npb8tCaSX9FK7E8HnRr0Jz8D6OP9dO5Vg3Q9ct" crossorigin="anonymous"></script>
3333
<script type="text/javascript" src="bootstrap-iconpicker/js/iconset/fontawesome5-3-1.min.js"></script>
3434
<script type="text/javascript" src="bootstrap-iconpicker/js/bootstrap-iconpicker.min.js"></script>
3535
<script type="text/javascript" src="jquery-menu-editor.min.js"></script>

jquery-menu-editor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* jQuery Menu Editor
33
* @author David Ticona Saravia https://github.com/davicotico
4-
* @version 1.1.0
4+
* @version 1.1.1
55
* */
66
( function( $ )
77
{

0 commit comments

Comments
 (0)