-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from wireapp/kj/wir-21-make-add-in-work-for-ou…
…tlook-mobile Kj/wir 21 make add in work for outlook mobile
- Loading branch information
Showing
4 changed files
with
119 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
/* | ||
* Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. | ||
* See LICENSE in the project root for license information. | ||
*/ | ||
|
||
/* global Office */ | ||
|
||
import { addMeetingLink } from "../calendarIntegration/addMeetingLink"; | ||
|
||
export let mailboxItem; | ||
|
||
// Office is ready. Init | ||
Office.onReady(function () { | ||
mailboxItem = Office.context.mailbox.item; | ||
}); | ||
|
||
// Register the functions. | ||
Office.actions.associate("addMeetingLink", addMeetingLink); | ||
/* | ||
* Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. | ||
* See LICENSE in the project root for license information. | ||
*/ | ||
|
||
/* global Office */ | ||
|
||
import { addMeetingLink } from "../calendarIntegration/addMeetingLink"; | ||
|
||
export let mailboxItem; | ||
|
||
// Office is ready. Init | ||
Office.onReady(function () { | ||
mailboxItem = Office.context.mailbox.item; | ||
}); | ||
|
||
// Register the functions. | ||
Office.actions.associate("addMeetingLink", addMeetingLink); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
export enum PlatformType { | ||
IOS = "iOS", | ||
ANDROID = "Android", | ||
PC = "PC", | ||
OFFICEONLINE = "OfficeOnline", | ||
MAC = "Mac", | ||
UNIVERSAL = "Universal" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters