diff options
author | lid2000 <lid2000@users.noreply.github.com> | 2015-03-13 16:01:18 +1100 |
---|---|---|
committer | lid2000 <lid2000@users.noreply.github.com> | 2015-03-13 16:01:18 +1100 |
commit | 7894545556226c4a17b45f6164d32041088cdb89 (patch) | |
tree | dadadb998f683e5335484269f5ac51ecc1c4f042 /src/static/js | |
parent | 56dbad41ada0e1d848fb8fca4a1608d34b372b36 (diff) | |
download | etherpad-lite-7894545556226c4a17b45f6164d32041088cdb89.zip |
Return true from handleCut function
Diffstat (limited to 'src/static/js')
-rw-r--r-- | src/static/js/ace2_inner.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/static/js/ace2_inner.js b/src/static/js/ace2_inner.js index 15747249..aa4bf6c7 100644 --- a/src/static/js/ace2_inner.js +++ b/src/static/js/ace2_inner.js @@ -3319,6 +3319,7 @@ function Ace2Inner(){ { doDeleteKey(evt); }); + return true; } function handleClick(evt) |