diff --git a/source/Ox.UI/js/Form/Editable.js b/source/Ox.UI/js/Form/Editable.js index de3ea9cb..c213fb5c 100644 --- a/source/Ox.UI/js/Form/Editable.js +++ b/source/Ox.UI/js/Form/Editable.js @@ -66,7 +66,7 @@ Ox.Editable = function(options, self) { .on({ click: function(e) { var $target = $(e.target); - if ($target.is('a') || ($target = $target.parents('a')).length) { + if (!e.shiftKey && ($target.is('a') || ($target = $target.parents('a')).length)) { e.preventDefault(); if (self.options.clickLink) { e.target = $target[0];