Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
army8735 committed Jun 30, 2014
1 parent 88b7366 commit 9cb5baf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions dist/seajs-text-debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,9 @@ function getPluginName(ext) {
}

function xhr(url, callback) {
var r = global.ActiveXObject ?
new global.ActiveXObject("Microsoft.XMLHTTP") :
new global.XMLHttpRequest()
var r = global.XMLHttpRequest ?
new global.XMLHttpRequest() :
new global.ActiveXObject("Microsoft.XMLHTTP")

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

Expand Down Expand Up @@ -168,4 +168,5 @@ function pure(uri) {
return uri.replace(/\?.*$/, "")
}

})();
define("seajs/seajs-text/1.1.1/seajs-text-debug", [], {});
})();
2 changes: 1 addition & 1 deletion dist/seajs-text.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 9cb5baf

Please sign in to comment.