05ddf4364439ad1bbd16d120b5231e5cf856fc1f
galt
Tue Aug 5 13:47:45 2014 -0700
oops, extra quote not needed in javascript statement.
diff --git src/hg/hgTables/mainPage.c src/hg/hgTables/mainPage.c
index d66fddd..5ff1562 100644
--- src/hg/hgTables/mainPage.c
+++ src/hg/hgTables/mainPage.c
@@ -462,31 +462,31 @@
if (sameString(ot->name, outBed) || sameString(ot->name, outWigBed))
hPrintf(" id=\"outBed\"");
hPrintf(">%s\n", ot->label);
}
hPrintf("\n");
hPrintf(" ");
if (!cfgOptionBooleanDefault("hgta.disableSendOutput", FALSE))
{
hPrintf(" Send output to ");
struct dyString *dy = dyStringNew(256);
dyStringAppend(dy,
"onclick=\"document.getElementById('checkboxGreat').checked=false;");
if (isGenomeSpaceEnabled())
dyStringAppend(dy,
- "document.getElementById('checkboxGenomeSpace').checked=false;\"");
+ "document.getElementById('checkboxGenomeSpace').checked=false;");
dyStringAppend(dy,
"return true;\"");
cgiMakeCheckBoxIdAndJS("sendToGalaxy", doGalaxy(),
"checkboxGalaxy", dy->string);
hPrintf("Galaxy\n");
nbSpaces(2);
cgiMakeCheckBoxIdAndJS("sendToGreat", doGreat(),
"checkboxGreat",
"onclick=\"return onSelectGreat();\"");
hPrintf(" GREAT");
if (isGenomeSpaceEnabled())
{
nbSpaces(2);
cgiMakeCheckBoxIdAndJS("sendToGenomeSpace", doGenomeSpace(),
"checkboxGenomeSpace",