fix createLinks (image links etc.)
This commit is contained in:
parent
7b91ef5f56
commit
8cb557738b
1 changed files with 6 additions and 0 deletions
|
@ -295,6 +295,12 @@ pandora.createLinks = function($element) {
|
|||
$element.on({
|
||||
click: function(e) {
|
||||
var $target = $(e.target);
|
||||
while (true) {
|
||||
if ($target.is('a') or $target == $element) {
|
||||
break;
|
||||
}
|
||||
$target = $($target.parent());
|
||||
}
|
||||
if (
|
||||
$target.is('a')
|
||||
&& !$($target.parent()).is('.OxEditable')
|
||||
|
|
Loading…
Reference in a new issue