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 a28c724 commit a5a8362Copy full SHA for a5a8362
src/arc-electron.html
@@ -278,7 +278,7 @@
278
tap: '_handleLinks',
279
'content-copy': '_copyContentHandler',
280
'google-autorize': '_googleOauthTokenRequested',
281
- 'on-process-incoming-data': '_processIcomingData',
+ 'process-incoming-data': '_processIcomingDataHandler',
282
'pick-google-drive-item': 'openDrivePicker',
283
'open-drive-selector': 'openDrivePicker',
284
'settings-changed': '_settingChanged',
@@ -469,6 +469,10 @@
469
return false;
470
},
471
472
+ _processIcomingDataHandler: function(e) {
473
+ this._processIcomingData(e.detail.data);
474
+ },
475
+
476
_processIcomingData: function(data, opts) {
477
if (!data) {
478
return;
0 commit comments