Privatizing and such to clean up docs

This commit is contained in:
2012-12-26 10:58:42 -05:00
parent efeccf62a2
commit a40ee71b5f
5 changed files with 19 additions and 18 deletions

View File

@@ -21,13 +21,13 @@ const b64Width = 76
var (
webAssetsTmpl = template.Must(template.New("web_assets").Parse("" +
"// WARNING: GENERATED FILE, NERDS! {{.Now}}\n" +
"package conway\n" +
"// WARNING: GENERATED FILE, NERDS! {{.Now}}\n" +
"\n" +
"const (\n" +
" GAME_OF_LIFE_INDEX_HTML = `{{.IndexHTML}}`\n" +
" NORMALIZE_CSS = `{{.NormalizeCSS}}`\n" +
" JQUERY_MIN_JS = `{{.JqueryMinJS}}`\n" +
" gameOfLifeIndexHtml = `{{.IndexHTML}}`\n" +
" normalizeCss = `{{.NormalizeCSS}}`\n" +
" jqueryMinJs = `{{.JqueryMinJS}}`\n" +
")\n"))
normalizeCssUrl = "http://necolas.github.com/normalize.css/2.0.1/normalize.css"
jqueryMinJsUrl = "http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"