Fixed #61: actions menu not working in bootstrap modal (was a z-index issue)
This commit is contained in:
parent
0005bb51b7
commit
99a3c5c34a
|
@ -3,6 +3,11 @@
|
||||||
http://jsoneditoronline.org
|
http://jsoneditoronline.org
|
||||||
|
|
||||||
|
|
||||||
|
## not yet released, version 2.3.1
|
||||||
|
|
||||||
|
- Fixed non-working action menu when in bootstrap modal (z-index issue).
|
||||||
|
|
||||||
|
|
||||||
## 2013-09-13, version 2.3.0
|
## 2013-09-13, version 2.3.0
|
||||||
|
|
||||||
- Implemented an option `modes`, which creates a menu in the editor
|
- Implemented an option `modes`, which creates a menu in the editor
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -224,7 +224,7 @@ div.jsoneditor {
|
||||||
|
|
||||||
.jsoneditor-contextmenu {
|
.jsoneditor-contextmenu {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: 999;
|
z-index: 99999;
|
||||||
}
|
}
|
||||||
|
|
||||||
.jsoneditor-contextmenu ul {
|
.jsoneditor-contextmenu ul {
|
||||||
|
|
|
@ -27,8 +27,8 @@
|
||||||
* Copyright (c) 2011-2013 Jos de Jong, http://jsoneditoronline.org
|
* Copyright (c) 2011-2013 Jos de Jong, http://jsoneditoronline.org
|
||||||
*
|
*
|
||||||
* @author Jos de Jong, <wjosdejong@gmail.com>
|
* @author Jos de Jong, <wjosdejong@gmail.com>
|
||||||
* @version 2.3.0
|
* @version 2.3.1-SNAPSHOT
|
||||||
* @date 2013-09-13
|
* @date 2013-09-16
|
||||||
*/
|
*/
|
||||||
(function () {
|
(function () {
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
.jsoneditor-contextmenu {
|
.jsoneditor-contextmenu {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: 999;
|
z-index: 99999;
|
||||||
}
|
}
|
||||||
|
|
||||||
.jsoneditor-contextmenu ul {
|
.jsoneditor-contextmenu ul {
|
||||||
|
|
Loading…
Reference in New Issue