use older version of jquery
This commit is contained in:
parent
682421a1ae
commit
8270127cb7
3 changed files with 7 additions and 2 deletions
|
|
@ -4,7 +4,7 @@
|
|||
<title>Monochrome Legacy (HTML5)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<link rel="stylesheet" type="text/css" href="legacy.css" />
|
||||
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
|
||||
<script type="text/javascript" src="jquery-1.6.4.min.js"></script>
|
||||
<script type="text/javascript" src="html5.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
|
|
|||
|
|
@ -2,7 +2,8 @@
|
|||
$(document).ready(function () {
|
||||
// CORS Support for IE8/9 (XDomainRequest)
|
||||
// Required because IE8/9 do not support CORS via standard XMLHttpRequest
|
||||
if (window.XDomainRequest) {
|
||||
// Note: $.ajaxTransport was added in jQuery 1.5. If using 1.2.6, this will be skipped.
|
||||
if (window.XDomainRequest && $.ajaxTransport) {
|
||||
$.ajaxTransport(function(s) {
|
||||
if (s.crossDomain && s.async) {
|
||||
if (s.timeout) {
|
||||
|
|
|
|||
4
legacy/jquery-1.6.4.min.js
vendored
Normal file
4
legacy/jquery-1.6.4.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue