inlined the css

This commit is contained in:
Doug Fritz 2011-04-18 17:36:10 -07:00
parent fdb30586d0
commit 44d5bf27e9
2 changed files with 1 additions and 5 deletions

View File

@ -130,7 +130,7 @@
<li><a href="https://github.com/jonobr1/dat.gui/raw/versions/gui.min <li><a href="https://github.com/jonobr1/dat.gui/raw/versions/gui.min
.js"><strong>Download the minified source</strong></a> .js"><strong>Download the minified source</strong></a>
<small <small
id="buildsize">[255.9kb] id="buildsize">[254.1kb]
</small> </small>
</li> </li>

View File

@ -101,10 +101,6 @@ def build(src):
with open(outpath,'w') as f: with open(outpath,'w') as f:
f.write(compiled) f.write(compiled)
outpath = os.path.join(BUILD_ROOT, BUILD_NAME+'.css')
with open(outpath,'w') as f:
f.write(code)
size = bytes_to_kb(os.path.getsize(outpath)) size = bytes_to_kb(os.path.getsize(outpath))
with open(INDEX,'r') as f: with open(INDEX,'r') as f:
index = f.read() index = f.read()