19 lines
598 B
HTML
19 lines
598 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Excel Add-in Commands</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<!-- Office.js must be present so the commands surface initializes -->
|
|
<script src="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>
|