We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73bb1b7 commit 31bbd50Copy full SHA for 31bbd50
google-client-loader.html
@@ -162,22 +162,19 @@
162
163
_fireSuccess: function() {
164
this.fire(this.successEventName,
165
- { 'name': this.name, 'version': this.version },
166
- { composed: true });
+ { 'name': this.name, 'version': this.version });
167
},
168
169
_fireError: function(response) {
170
if (response && response.error) {
171
this.fire(this.errorEventName, {
172
'name': this.name,
173
'version': this.version,
174
- 'error': response.error },
175
+ 'error': response.error });
176
} else {
177
178
179
- 'version': this.version },
180
+ 'version': this.version });
181
}
182
183
0 commit comments