mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-31 14:07:16 +00:00
Merge branch 'seeddms-5.1.x' into seeddms-6.0.x
This commit is contained in:
commit
ef06f2909f
|
@ -133,6 +133,7 @@
|
|||
--------------------------------------------------------------------------------
|
||||
Changes in version 5.1.16
|
||||
--------------------------------------------------------------------------------
|
||||
- initialize categories to empty array. Closes #458
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
Changes in version 5.1.15
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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();
|
||||
});
|
||||
}); /* }}} */
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user