Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
polymer-ajax: default response to null instead of ''
Browse files Browse the repository at this point in the history
  • Loading branch information
frankiefu committed Aug 21, 2013
1 parent 1f29b84 commit 580f6d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion polymer-ajax/polymer-ajax.html
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@
* @type Object
* @default null
*/
response: null,
created: function() {
this.xhr = document.createElement('polymer-xhr');
},
response: '',
receive: function(response, xhr) {
if (this.isSuccess(xhr)) {
this.processResponse(xhr);
Expand Down

0 comments on commit 580f6d5

Please sign in to comment.