Fix 404 on default help page

Fixes #19
main
Isaiah Odhner 2017-10-25 01:58:06 -04:00
parent ddab1f8bd4
commit 575bff1a1e
1 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ function show_help(){
$contents = $(E("ul")).addClass("contents");
$help_window.$content.append($contents, $iframe);
$help_window.$content.css({width: 800, height: 600});
$iframe.attr({name: "help-frame", src: "help/default.htm"});
$iframe.attr({name: "help-frame", src: "help/default.html"});
$iframe.css({backgroundColor: "white"});
$help_window.center();
@ -50,7 +50,7 @@ function show_help(){
var $default_item_li = $(E("li")).addClass("page");
$default_item_li.append($Item("Welcome to Help").click(function(e){
$iframe.attr({src: "help/default.htm"});
$iframe.attr({src: "help/default.html"});
}));
$contents.append($default_item_li);