18 lines
456 B
HTML
18 lines
456 B
HTML
|
|
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<!-- Office.js must be present so the commands surface initializes -->
|
|
https://appsforoffice.microsoft.com/lib/1/hosted/office.js</script>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
// Minimal init; no custom handlers needed for ShowTaskpane
|
|
Office.onReady(() => {
|
|
// Commands surface is ready. Nothing else required for ShowTaskpane.
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|