浏览代码

Moved comment below DOCTYPE to avoid entering Internet Explorer quirks mode.

tags/1.0
Matthew Petroff 12 年前
父节点
当前提交
3e37112a8b
共有 2 个文件被更改,包括 15 次插入12 次删除
  1. +13
    -11
      build/pannellum.htm
  2. +2
    -1
      utils/build.py

+ 13
- 11
build/pannellum.htm
文件差异内容过多而无法显示
查看文件


+ 2
- 1
utils/build.py 查看文件

@@ -70,7 +70,8 @@ def htmlCompress(text):
return compressed

def addHeader(text):
return '<!-- Pannellum, http://pannellum.sf.net/ -->\n' + text
text = text.replace('<!DOCTYPE HTML>','');
return '<!DOCTYPE HTML>\n<!-- Pannellum, http://pannellum.sf.net/ -->\n' + text

def build(files, css, html, filename):
folder = ''


正在加载...
取消
保存