Skip to content

Commit

Permalink
Version 1.1.1: fix: event being bound over once when page contains mo…
Browse files Browse the repository at this point in the history
…re than one editor; Upgraded to Bootstrap 4.6.2
  • Loading branch information
davicotico committed Feb 18, 2023
1 parent 9e9d3ec commit 93c3b6d
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 11 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
/nbproject/
/temp/
*.html
*.svg
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# jQuery Menu Editor 1.1.0
# >>> [DEMO](https://davicotico.github.io/jQuery-Menu-Editor/)
# jQuery Menu Editor 1.1.1
# >>> [DEMO](https://davidticona.com/demos/jQuery-Menu-Editor/)
### Features
* Add, Update & Remove items from Menu
* Multilevel Drag & Drop
* Form Item Editor
* Include IconPicker Plugin (https://victor-valencia.github.com/bootstrap-iconpicker)
* Support to mobile devices
* Include IconPicker Plugin (https://victor-valencia.github.io/bootstrap-iconpicker)
* Support for mobile devices
* Load data from JSON string
* The output is a Json string
* The output is a JSON string

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

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

<!-- (Recommended) Just before the closing body tag </body> -->
<script type="text/javascript" src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js'></script>
<script type="text/javascript" src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-Fy6S3B9q64WdZWQUiU+q4/2Lc9npb8tCaSX9FK7E8HnRr0Jz8D6OP9dO5Vg3Q9ct" crossorigin="anonymous"></script>
<script type="text/javascript" src="bootstrap-iconpicker/js/iconset/fontawesome5-3-1.min.js"></script>
<script type="text/javascript" src="bootstrap-iconpicker/js/bootstrap-iconpicker.min.js"></script>
<script type="text/javascript" src="jquery-menu-editor.min.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion jquery-menu-editor.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* jQuery Menu Editor
* @author David Ticona Saravia https://github.com/davicotico
* @version 1.1.0
* @version 1.1.1
* */
( function( $ )
{
Expand Down
Loading

0 comments on commit 93c3b6d

Please sign in to comment.