mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-14 13:42:04 +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) {
|
$("body").on("click", "span.openpopupbox", function(e) {
|
||||||
$(""+$(e.target).data("href")).toggle();
|
$(""+$(e.target).data("href")).toggle();
|
||||||
});
|
});
|
||||||
|
$("body").on("click", "span.openpopupbox i", function(e) {
|
||||||
|
$(e.target).parent().click();
|
||||||
|
});
|
||||||
$("body").on("click", "span.closepopupbox", function(e) {
|
$("body").on("click", "span.closepopupbox", function(e) {
|
||||||
$(this).parent().hide();
|
$(this).parent().hide();
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue
Block a user