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 23751f3 commit ac9e1b1Copy full SHA for ac9e1b1
google-client-loader.html
@@ -162,19 +162,22 @@
162
163
_fireSuccess: function() {
164
this.fire(this.successEventName,
165
- { 'name': this.name, 'version': this.version });
+ { 'name': this.name, 'version': this.version },
166
+ { composed: true });
167
},
168
169
_fireError: function(response) {
170
if (response && response.error) {
171
this.fire(this.errorEventName, {
172
'name': this.name,
173
'version': this.version,
- 'error': response.error });
174
+ 'error': response.error },
175
176
} else {
177
178
- 'version': this.version });
179
+ 'version': this.version },
180
181
}
182
183
0 commit comments