drop support for ie6

This commit is contained in:
Shish
2020-03-27 20:57:15 +00:00
parent a3a129df5f
commit 70acc6015b
2 changed files with 2 additions and 11 deletions

View File

@@ -156,7 +156,7 @@ var Tagger = {
},
ajax : function (url, callback) {
var http = (new XMLHttpRequest() || new ActiveXObject("Microsoft.XMLHTTP"));
var http = new XMLHttpRequest();
http.open("GET",url,true);
http.onreadystatechange = function () {
if(http.readyState == 4) { callback(http); }