Fix #1504 - Set IE8 compatibility mode to fix extjs IE9 issues.
Also add missing <head> tag.
This commit is contained in:
parent
6077ac3fbe
commit
1820b61a57
1 changed files with 5 additions and 0 deletions
|
@ -88,6 +88,11 @@ extjs_root(http_connection_t *hc, const char *remain, void *opaque)
|
|||
|
||||
#define EXTJSPATH "static/extjs"
|
||||
htsbuf_qprintf(hq, "<html>\n");
|
||||
htsbuf_qprintf(hq, "<head>\n");
|
||||
|
||||
// Issue #1504 - IE9 temporary fix
|
||||
htsbuf_qprintf(hq, "<meta http-equiv=\"X-UA-Compatible\" content=\"IE=8\">\n");
|
||||
|
||||
|
||||
htsbuf_qprintf(hq, "<script type=\"text/javascript\" src=\""EXTJSPATH"/adapter/ext/ext-base%s.js\"></script>\n"
|
||||
"<script type=\"text/javascript\" src=\""EXTJSPATH"/ext-all%s.js\"></script>\n"
|
||||
|
|
Loading…
Add table
Reference in a new issue