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

Commit

Permalink
Fixes #175 (Broken Hangouts link)
Browse files Browse the repository at this point in the history
  • Loading branch information
manastungare committed Nov 11, 2014
1 parent 2f27c11 commit a422188
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/browser_action.js
Original file line number Diff line number Diff line change
Expand Up @@ -328,9 +328,9 @@ browseraction.createEventDiv_ = function(event) {
.addClass('event-details')
.appendTo(eventDiv);

if (event.video_call_url) {
if (event.hangout_url) {
$('<a>').attr({
'href': event.video_call_url,
'href': event.hangout_url,
'target': '_blank'
}).append($('<img>').addClass('video-call-icon').attr({
'src': chrome.extension.getURL('icons/ic_action_video.png')
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.2",
"version": "1.5.3",
"default_locale": "en",
"key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCzO8gAn6n4s5Ohs50F2lmLGsO0FVKIwYyro8qZHlU+9pF85wGBEqoNwSeawr+AZdLgtnQRkIgatLM68EX8sB0DErp3Ds4qCvY8VufvvDIoqxdKtC3QlFxR9PoUZMY7/4lb/OadWnr0UjekxcSNVyk6nqZkTFCcE7RWDMDZ8qwqsQIDAQAB",

Expand Down

0 comments on commit a422188

Please sign in to comment.