Skip to content

Commit

Permalink
addressing review comments (whitespace)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hallvord R. M. Steen committed Nov 11, 2014
1 parent 7b40041 commit c7653ce
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions XMLHttpRequest/send-data-es-object.htm
Expand Up @@ -18,10 +18,10 @@
test.done()
});
client.open('POST', 'resources/content.py')
if(expected.exception){
if (expected.exception) {
assert_throws(expected.exception, function(){client.send(obj)})
test.done()
}else{
} else {
client.send(obj)
}
});
Expand All @@ -34,8 +34,8 @@
do_test({toString:function(){return null}}, 'null', 'sending object that stringifies to null')
var ancestor = {toString: function(){
var ar=[]
for(var prop in this){
if(this.hasOwnProperty(prop)){
for (var prop in this) {
if (this.hasOwnProperty(prop)) {
ar.push(prop+'='+this[prop])
}
};
Expand Down

0 comments on commit c7653ce

Please sign in to comment.