Skip to content
This repository has been archived by the owner on Dec 29, 2021. It is now read-only.

Commit

Permalink
Add tracking event when OAuth interactive is successful
Browse files Browse the repository at this point in the history
Else we only see failures, with no comparison to successes.
  • Loading branch information
manastungare committed Oct 28, 2014
1 parent 8d77bc0 commit 6498db8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/feeds.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ feeds.requestInteractiveAuthToken = function() {
background.log('OAuth not authorized: ' + chrome.runtime.lastError.message);
return;
}
_gaq.push(['_trackEvent', 'OAuth Interactive', 'Authorized']);
feeds.refreshUI(); // Causes the badge text to be updated.
feeds.fetchCalendars();
});
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "__MSG_google_calendar_extension_name__",
"description": "__MSG_google_calendar_extension_desc__",
"version": "1.5",
"version": "1.5.0.1",
"default_locale": "en",
"key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCzO8gAn6n4s5Ohs50F2lmLGsO0FVKIwYyro8qZHlU+9pF85wGBEqoNwSeawr+AZdLgtnQRkIgatLM68EX8sB0DErp3Ds4qCvY8VufvvDIoqxdKtC3QlFxR9PoUZMY7/4lb/OadWnr0UjekxcSNVyk6nqZkTFCcE7RWDMDZ8qwqsQIDAQAB",

Expand Down

0 comments on commit 6498db8

Please sign in to comment.