Skip to content

Commit f949305

Browse files
committed
Trimming whitespace.
1 parent fcab4d1 commit f949305

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

cross-domain/respond-proxy.html

+5-6
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<script>
1010
(function () {
1111
var domain, css, query, getQueryString, ajax, xmlHttp;
12-
12+
1313
/*
1414
http://stackoverflow.com/questions/4963673/get-url-array-variables-in-javascript-jquery/4963817#4963817
1515
*/
@@ -27,7 +27,6 @@
2727
if (p[0].search(/\[\]/) >= 0) { // then it"s an array
2828
p[0] = p[0].replace("[]", "");
2929

30-
3130
if (typeof ret[p[0]] != "object") {
3231
ret[p[0]] = [];
3332
}
@@ -43,7 +42,7 @@
4342
var req = xmlHttp();
4443
if (!req){
4544
return;
46-
}
45+
}
4746
req.open( "GET", url, true );
4847
req.onreadystatechange = function () {
4948
if ( req.readyState != 4 || req.status != 200 && req.status != 304 ){
@@ -56,7 +55,7 @@
5655
}
5756
req.send();
5857
};
59-
58+
6059
//define ajax obj
6160
xmlHttp = (function() {
6261
var xmlhttpmethod = false,
@@ -80,11 +79,11 @@
8079
return xmlhttpmethod;
8180
};
8281
})();
83-
82+
8483
query = getQueryString();
8584
css = query["css"];
8685
domain = query["url"];
87-
86+
8887
if (css && domain) {
8988
ajax(css, function (response) {
9089
window.name = response;

0 commit comments

Comments
 (0)