mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-03-11 00:15:34 +00:00
Merge branch 'seeddms-5.0.x' into seeddms-5.1.x
This commit is contained in:
commit
f3b5af1c43
|
@ -255,8 +255,12 @@ span.openpopupbox {
|
|||
}
|
||||
|
||||
div.popupbox {
|
||||
margin-top: 5px;
|
||||
background-color: #fff;
|
||||
border-radius: 4px;
|
||||
color: black;
|
||||
text-align: left;
|
||||
text-shadow: none;
|
||||
border: 1px solid #ccc;
|
||||
padding: 15px;
|
||||
display: none;
|
||||
|
|
|
@ -993,6 +993,9 @@ $(document).ready(function() { /* {{{ */
|
|||
$("body").on("click", "span.openpopupbox", function(e) {
|
||||
$(""+$(e.target).data("href")).toggle();
|
||||
});
|
||||
$("body").on("click", "span.openpopupbox i", function(e) {
|
||||
$(e.target).parent().click();
|
||||
});
|
||||
$("body").on("click", "span.closepopupbox", function(e) {
|
||||
$(this).parent().hide();
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue
Block a user