Sfoglia il codice sorgente

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

tags/1.0
Matthew Petroff 12 anni fa
parent
commit
3e37112a8b
2 ha cambiato i file con 15 aggiunte e 12 eliminazioni
  1. +13
    -11
      build/pannellum.htm
  2. +2
    -1
      utils/build.py

+ 13
- 11
build/pannellum.htm
File diff soppresso perché troppo grande
Vedi File


+ 2
- 1
utils/build.py Vedi File

@@ -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 = ''


Caricamento…
Annulla
Salva