diff options
Diffstat (limited to 'assets')
-rw-r--r-- | assets/js/main.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/assets/js/main.js b/assets/js/main.js index bb58268..d5be55f 100644 --- a/assets/js/main.js +++ b/assets/js/main.js @@ -486,7 +486,7 @@ var Guide = function(name) { Guide.prototype.format = function(data) { var container = $('<div/>'); - container.append($('<h2/>').text(this.name)); + container.append($('<h2/>').html(this.name)); return container; } @@ -582,7 +582,7 @@ GuideNetworkManager.prototype.for_server = function(data) { } var GuideManual = function() { - GuideServerClient.call(this, 'Manual'); + GuideServerClient.call(this, '<code>ip</code> & <code>wg</code>'); } GuideManual.prototype = Object.create(GuideServerClient.prototype); |