Skip to content

Commit 9cb5baf

Browse files
committed
build
1 parent 88b7366 commit 9cb5baf

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

dist/seajs-text-debug.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,9 @@ function getPluginName(ext) {
123123
}
124124

125125
function xhr(url, callback) {
126-
var r = global.ActiveXObject ?
127-
new global.ActiveXObject("Microsoft.XMLHTTP") :
128-
new global.XMLHttpRequest()
126+
var r = global.XMLHttpRequest ?
127+
new global.XMLHttpRequest() :
128+
new global.ActiveXObject("Microsoft.XMLHTTP")
129129

130130
r.open("GET", url, true)
131131

@@ -168,4 +168,5 @@ function pure(uri) {
168168
return uri.replace(/\?.*$/, "")
169169
}
170170

171-
})();
171+
define("seajs/seajs-text/1.1.1/seajs-text-debug", [], {});
172+
})();

dist/seajs-text.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)