ca001361fc433fbacc4805265af7110c8b24a9bb
galt
  Tue Apr 4 12:28:38 2017 -0700
code cleanup from CSP changes.

diff --git src/hg/lib/hPrint.c src/hg/lib/hPrint.c
index 0e52fd3..eda4fae 100644
--- src/hg/lib/hPrint.c
+++ src/hg/lib/hPrint.c
@@ -137,37 +137,30 @@
 
 void hDoubleVar(char *varName, double initialVal, int maxDigits)
 /* Write out numerical entry field if not supressed. */
 {
 if (!suppressHtml)
     cgiMakeDoubleVar(varName, initialVal, maxDigits);
 }
 
 void hCheckBox(char *varName, boolean checked)
 /* Make check box if not suppressed. */
 {
 if (!suppressHtml)
     cgiMakeCheckBox(varName, checked);
 }
 
-void hCheckBoxJS(char *varName, boolean checked, char *javascript)
-/* Make check box if not suppressed, with javascript. */
-{
-if (!suppressHtml)
-    cgiMakeCheckBoxJS(varName, checked, javascript);
-}
-
 void hDropListClassWithStyle(char *name, char *menu[], int menuSize, 
                                 char *checked, char *class, char *style)
 /* Make a drop-down list with names if not suppressed, 
  * using specified class and style */
 {
 if (!suppressHtml)
     cgiMakeDropListClassWithStyle(name, menu, menuSize, checked, class, style);
 }
 
 void hDropListClass(char *name, char *menu[], int menuSize, char *checked,
                         char *class)
 /* Make a drop-down list with names if not suppressed, using specified class. */
 {
 hDropListClassWithStyle(name, menu, menuSize, checked, class, NULL);
 }