Skip to content

Commit 10648e1

Browse files
authored
Merge pull request #163 from TCourtneyOwen/merge-office-addin-taskpane
Merge office addin taskpane
2 parents f0f5b10 + b8d2d89 commit 10648e1

File tree

7 files changed

+10
-25
lines changed

7 files changed

+10
-25
lines changed

.vscode/launch.json

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -58,24 +58,7 @@
5858
"url": "${input:officeOnlineDocumentUrl}",
5959
"webRoot": "${workspaceFolder}",
6060
"preLaunchTask": "Debug: Web"
61-
},
62-
{
63-
"type": "node",
64-
"request": "launch",
65-
"name": "Debug Tests",
66-
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
67-
"args": [
68-
"-u",
69-
"tdd",
70-
"--timeout",
71-
"999999",
72-
"--colors",
73-
"-r",
74-
"ts-node/register",
75-
"${workspaceFolder}/test/*.ts"
76-
],
77-
"internalConsoleOptions": "openOnSessionStart",
78-
},
61+
}
7962
],
8063
"inputs": [
8164
{

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/commands/commands.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See full license in root of repo. -->
1+
<!-- Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. -->
22

33
<!DOCTYPE html>
44
<html>

src/functions/functions.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
<!-- Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. -->
2+
13
<!DOCTYPE html>
24
<html>
35

src/taskpane/taskpane.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See full license in root of repo. -->
1+
<!-- Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. -->
22
<!-- This file shows how to design a first-run page that provides a welcome screen to the user about the features of the add-in. -->
33

44
<!DOCTYPE html>

test/src/test-helpers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ export function addTestResult(testValues: any[], resultName: string, resultValue
1919
data["resultName"] = resultName;
2020
data["resultValue"] = resultValue;
2121
testValues.push(data);
22-
}
22+
}

test/src/test-taskpane.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See full license in root of repo. -->
1+
<!-- Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. -->
22
<!-- This file shows how to design a first-run page that provides a welcome screen to the user about the features of the add-in. -->
33

44
<!DOCTYPE html>

0 commit comments

Comments
 (0)