mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-06-02 06:57:40 +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
|
Changes in version 5.1.16
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
- initialize categories to empty array. Closes #458
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
Changes in version 5.1.15
|
Changes in version 5.1.15
|
||||||
|
|
|
@ -277,10 +277,10 @@ div.popupbox {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
text-shadow: none;
|
text-shadow: none;
|
||||||
border: 1px solid #ccc;
|
border: 1px solid #ccc;
|
||||||
padding: 15px;
|
padding: 25px 15px 15px 15px;
|
||||||
display: none;
|
display: none;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
width: 250px;
|
min-width: 250px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.popupbox dt {
|
div.popupbox dt {
|
||||||
|
|
|
@ -1139,6 +1139,7 @@ $(document).ready(function() { /* {{{ */
|
||||||
|
|
||||||
$("body").on("click", "span.openpopupbox", function(e) {
|
$("body").on("click", "span.openpopupbox", function(e) {
|
||||||
$(""+$(e.target).data("href")).toggle();
|
$(""+$(e.target).data("href")).toggle();
|
||||||
|
e.stopPropagation();
|
||||||
});
|
});
|
||||||
$("body").on("click", "span.openpopupbox i", function(e) {
|
$("body").on("click", "span.openpopupbox i", function(e) {
|
||||||
$(e.target).parent().click();
|
$(e.target).parent().click();
|
||||||
|
@ -1148,6 +1149,7 @@ $(document).ready(function() { /* {{{ */
|
||||||
});
|
});
|
||||||
$("body").on("click", "span.closepopupbox", function(e) {
|
$("body").on("click", "span.closepopupbox", function(e) {
|
||||||
$(this).parent().hide();
|
$(this).parent().hide();
|
||||||
|
e.stopPropagation();
|
||||||
});
|
});
|
||||||
}); /* }}} */
|
}); /* }}} */
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user