diff options
| -rw-r--r-- | background_page.html | 1 | ||||
| -rw-r--r-- | helpDialog.html | 7 |
2 files changed, 4 insertions, 4 deletions
diff --git a/background_page.html b/background_page.html index ab76e59e..082c38ea 100644 --- a/background_page.html +++ b/background_page.html @@ -161,6 +161,7 @@ for (var group in commandGroups) dialogHtml = dialogHtml.replace("{{" + group + "}}", helpDialogHtmlForCommandGroup(group, commandsToKey, availableCommands)); + dialogHtml = dialogHtml.replace("{{version}}", currentVersion); return dialogHtml; } diff --git a/helpDialog.html b/helpDialog.html index 856663f1..652c2f91 100644 --- a/helpDialog.html +++ b/helpDialog.html @@ -65,7 +65,7 @@ cursor:default; -webkit-user-select:none; } - #vimiumHelpDialogFooter { font-size:9px; } + #vimiumHelpDialogFooter { font-size:10px; } </style> <!-- Note that the template placeholders (e.g. "pageNavigation") will be filled in by the background @@ -97,9 +97,8 @@ Found a bug? <a href="http://github.com/philc/vimium/issues">Report it here</a>. </div> <div class="vimiumColumn" style="text-align:right"> - <!-- TODO(philc): Replace with real version --> - <span>Version 1.1</span><br/> - <a href="#">Homepage</a> + <span>Version {{version}}</span><br/> + <!-- <a href="#">Homepage</a> --> </div> </div> </div>
\ No newline at end of file |
