aboutsummaryrefslogtreecommitdiffstats
path: root/background_scripts
diff options
context:
space:
mode:
authormrmr19932016-02-03 03:20:05 +0000
committermrmr19932016-02-03 03:20:05 +0000
commita25b2b948e5b714b1c0d80f03ec5638d7607fe27 (patch)
tree2614d0427cc600713d33774f6d11459d939bf42b /background_scripts
parent559666229c87ed6668a8182d5793fa03b81b53bc (diff)
downloadvimium-a25b2b948e5b714b1c0d80f03ec5638d7607fe27.tar.bz2
Use <span>s as placeholders in help_dialog.html
Diffstat (limited to 'background_scripts')
-rw-r--r--background_scripts/main.coffee2
1 files changed, 1 insertions, 1 deletions
diff --git a/background_scripts/main.coffee b/background_scripts/main.coffee
index 5c056fc9..a027154a 100644
--- a/background_scripts/main.coffee
+++ b/background_scripts/main.coffee
@@ -155,7 +155,7 @@ root.helpDialogHtml = (showUnboundCommands, showCommandNames, customTitle) ->
dialogHtml = fetchFileContents("pages/help_dialog.html")
for placeholder, replacementString of replacementStrings
- dialogHtml = dialogHtml.replace "{{#{placeholder}}}", replacementString
+ dialogHtml = dialogHtml.replace "<span id=\"help-dialog-#{placeholder}\"></span>", replacementString
dialogHtml
#