diff options
| author | Alon Levy <alon@pobox.com> | 2014-12-08 01:39:27 +0200 |
|---|---|---|
| committer | Alon Levy <alon@pobox.com> | 2014-12-08 01:39:27 +0200 |
| commit | be3f3931c61561f53c537da1d0d84f3616a24c3c (patch) | |
| tree | 1fcff092df8702d0705e1a48f547b88238f80637 /src | |
| parent | de45f6c14f91a5cd1be833ffab164ada012a6838 (diff) | |
fix link hiding by clicking link name after another regression
Diffstat (limited to 'src')
| -rw-r--r-- | src/rz_core.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/rz_core.js b/src/rz_core.js index 9a081dfa..b2e70be8 100644 --- a/src/rz_core.js +++ b/src/rz_core.js @@ -154,6 +154,9 @@ var svgInput = (function() { svg_input.val(oldname); svg_input.data().d = n; svg_input.focus(); + if (original_element) { + original_element.show(); + } original_element = $(e); original_element.hide(); // TODO: set cursor to correct location in text |
