mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-03-11 16:35:38 +00:00
open popupbox even if title is an <i> tag
This commit is contained in:
parent
b8d4d12f4e
commit
75d8413832
|
@ -992,6 +992,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