Allow collapse and expand of source code

This commit is contained in:
ryanbrandenburg 2016-04-12 14:25:36 -07:00
parent a4f5d8d11f
commit 05d740076b
5 changed files with 5 additions and 4 deletions

File diff suppressed because one or more lines are too long

View File

@ -137,7 +137,7 @@
}; };
function frame(el) { function frame(el) {
ns(el).children(".source .collapsible").toggle(); ns(".source .collapsible", el).toggle();
} }
function tab(el) { function tab(el) {

View File

@ -14,7 +14,7 @@ namespace PageGenerator
{ {
private const int NumArgs = 1; private const int NumArgs = 1;
public void Main(string[] args) public static void Main(string[] args)
{ {
if (args.Length != NumArgs) if (args.Length != NumArgs)
{ {

View File

@ -3,6 +3,7 @@
"description": "Builds the pages for the Diagnostics projects. Runs in build.cmd.", "description": "Builds the pages for the Diagnostics projects. Runs in build.cmd.",
"compilationOptions": { "compilationOptions": {
"warningsAsErrors": true, "warningsAsErrors": true,
"emitEntryPoint": true,
"keyFile": "../../tools/Key.snk" "keyFile": "../../tools/Key.snk"
}, },
"repository": { "repository": {