Allow collapse and expand of source code
This commit is contained in:
parent
a4f5d8d11f
commit
05d740076b
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -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) {
|
||||||
|
|
|
||||||
|
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -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": {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue