Merge branch 'seeddms-5.1.x' into seeddms-6.0.x

This commit is contained in:
Uwe Steinmann 2020-03-04 20:39:11 +01:00
commit ef06f2909f
3 changed files with 5 additions and 2 deletions

View File

@ -133,6 +133,7 @@
--------------------------------------------------------------------------------
Changes in version 5.1.16
--------------------------------------------------------------------------------
- initialize categories to empty array. Closes #458
--------------------------------------------------------------------------------
Changes in version 5.1.15

View File

@ -277,10 +277,10 @@ div.popupbox {
text-align: left;
text-shadow: none;
border: 1px solid #ccc;
padding: 15px;
padding: 25px 15px 15px 15px;
display: none;
position: absolute;
width: 250px;
min-width: 250px;
}
div.popupbox dt {

View File

@ -1139,6 +1139,7 @@ $(document).ready(function() { /* {{{ */
$("body").on("click", "span.openpopupbox", function(e) {
$(""+$(e.target).data("href")).toggle();
e.stopPropagation();
});
$("body").on("click", "span.openpopupbox i", function(e) {
$(e.target).parent().click();
@ -1148,6 +1149,7 @@ $(document).ready(function() { /* {{{ */
});
$("body").on("click", "span.closepopupbox", function(e) {
$(this).parent().hide();
e.stopPropagation();
});
}); /* }}} */