5e4838f28e48e8175b933f5c2f459785add6f1cb
Merge parents 3a3ec8b 45e0e7a
galt
  Wed Feb 15 15:30:20 2017 -0800
fixed merge conflicts after pull from master. mostly fixing missing semi-colons and newlines on short bits of js.

diff --cc src/hg/hgTracks/extTools.c
index 855bdbd,d7efdba..84a5288
--- src/hg/hgTracks/extTools.c
+++ src/hg/hgTracks/extTools.c
@@@ -282,20 -282,23 +282,20 @@@
          else
              printf("<input type=\"hidden\" name=\"%s\" value=\"%s\">\n", slp->name, val);
          }
      }
  
  // a hidden submit button, see
  // http://stackoverflow.com/questions/477691/submitting-a-form-by-pressing-enter-without-a-submit-button
  if (debug)
      printf("<input type=\"submit\">\n");
  else if (!submitDone)
      printf("<input type=\"submit\" style=\"position: absolute; left: -9999px; width: 1px; height: 1px;\">\n");
  printf("</form>\n");
  // a little javascript that clicks the submit button
  if (!debug)
      {
-     jsInline("document.getElementById(\"redirForm\").submit();");
 -    struct dyString *dy = dyStringNew(256);
 -    dyStringPrintf(dy, "document.getElementById(\"redirForm\").submit();\n");
 -    jsInline(dy->string);
 -    dyStringFree(&dy);
++    jsInline("document.getElementById(\"redirForm\").submit();\n");
      }
  jsInlineFinish();
  printf("</body></html>\n");
  }