Skip to content

Commit

Permalink
removed composed option as it's not necessary anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
Elliott Marquez committed Jul 11, 2017
1 parent 73bb1b7 commit 31bbd50
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions google-client-loader.html
Original file line number Diff line number Diff line change
Expand Up @@ -162,22 +162,19 @@

_fireSuccess: function() {
this.fire(this.successEventName,
{ 'name': this.name, 'version': this.version },
{ composed: true });
{ 'name': this.name, 'version': this.version });
},

_fireError: function(response) {
if (response && response.error) {
this.fire(this.errorEventName, {
'name': this.name,
'version': this.version,
'error': response.error },
{ composed: true });
'error': response.error });
} else {
this.fire(this.errorEventName, {
'name': this.name,
'version': this.version },
{ composed: true });
'version': this.version });
}
},

Expand Down

0 comments on commit 31bbd50

Please sign in to comment.