summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStéphane Guillou <stephane.guillou@libreoffice.org>2024-04-19 06:02:56 +0200
committerOlivier Hallot <olivier.hallot@libreoffice.org>2024-04-23 19:23:24 +0200
commit41415015085fa144e7b94d85d9682c69d992bc1a (patch)
tree9b2999a3e93e2edaa6cb0eaad72f09e7ad0a18d9
parente4c3bf95610bf2995326c0a7a3a2f2a2e9b75c1e (diff)
remove another pesky double-space in bookmark snippetHEADmaster
looks like the last one according to: grep -E "\w[ ]{2,}\w" snippets.js Change-Id: Ice7ee3c8c82f0d9f7a3eef83dcc49d4689ef2a0f Reviewed-on: https://gerrit.libreoffice.org/c/dev-tools/+/166214 Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org> Reviewed-by: Juan José González <juanjosegzl@libreoffice.org> Tested-by: Olivier Hallot <olivier.hallot@libreoffice.org>
-rw-r--r--help3/xhpeditor/js/snippets.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/help3/xhpeditor/js/snippets.js b/help3/xhpeditor/js/snippets.js
index f2d4303e..70b1e483 100644
--- a/help3/xhpeditor/js/snippets.js
+++ b/help3/xhpeditor/js/snippets.js
@@ -129,7 +129,7 @@ function bookmarkValue() {
}
function bookmarkBranch() {
- var a1 = '<bookmark branch="hid/CHANGE ME(path/to/dialog/widget)" id="' + random('bm') + '" localize="false"/>\n';
+ var a1 = '<bookmark branch="hid/CHANGE ME(path/to/dialog/widget)" id="' + random('bm') + '" localize="false"/>\n';
editor.replaceRange(a1, editor.doc.getCursor());
}