Skip to content

Commit d79d772

Browse files
authored
Merge pull request #603 from d45/d45/api_index_fix
using the corrected file
2 parents 9300080 + 5eb02e1 commit d79d772

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

website/static/api/index.html

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<title>Tableau Extensions</title>
77
<meta name="description" content="">
88
<meta name="viewport" content="width=device-width, initial-scale=1">
9-
<link rel="stylesheet" href="assets/css/main.css">
9+
<link rel="stylesheet" href="./assets/css/main.css">
1010
</head>
1111
<body>
1212
<header>
@@ -51,7 +51,7 @@
5151
<div class="container">
5252
<ul class="tsd-breadcrumb">
5353
<li>
54-
<a href="globals.html">Globals</a>
54+
<a href="./globals.html">Globals</a>
5555
</li>
5656
</ul>
5757
<h1>Tableau Extensions</h1>
@@ -67,9 +67,9 @@ <h1>Tableau Extensions API</h1>
6767
</a>
6868
<p>The Tableau Extensions API is a JavaScript library that is organized into namespaces that contain
6969
the classes and methods for communicating with Tableau components. The Tableau Extensions API
70-
library supports both dashboard extensions and viz extensions (only available in beta), although not
70+
library supports both dashboard extensions and viz extensions, although not
7171
all interfaces and methods apply to both extensions. For an overview of how the API is organized,
72-
see <a href="./trex_api_about.html">Tableau Extensions API Basics</a>.</p>
72+
see <a href="../docs/trex_api_about">Tableau Extensions API Basics</a>.</p>
7373
<div class="alert alert-info">
7474
<b>Note:</b> To see all the methods and properties for the Extensions API interfaces, select the <b>Inherited</b> option in the upper-right corner of your browser window. This option shows any methods and properties inherited from base classes.
7575
</div>
@@ -94,7 +94,7 @@ <h1>Tableau Extensions API</h1>
9494
</tr>
9595
<tr>
9696
<td align="left"><a href="./interfaces/worksheetcontent.html">WorksheetContent</a></td>
97-
<td align="left"><strong>(Available to viz extensions beta only)</strong> The <code>worksheetContent</code> provides access to the worksheet object. When you have the worksheet object, you have access to all elements in the <a href="./interfaces/worksheet.html">worksheet</a>, including the <a href="./interfaces/dashboard.html#worksheets">worksheets</a>, <a href="./interfaces/markscollection.html">marks</a>, <a href="./interfaces/filter.html">filters</a>, <a href="./interfaces/parameter.html">parameters</a>, and <a href="./interfaces/datasource.html">data sources</a>. For example, to access the worksheet in a workbook (after initialization), you might have a line of code that looks like the following: <br> <code>const worksheet = tableau.extensions.worksheetContent</code></td>
97+
<td align="left"><strong>(Available to viz extensions only)</strong> The <code>worksheetContent</code> provides access to the worksheet object. When you have the worksheet object, you have access to all elements in the <a href="./interfaces/worksheet.html">worksheet</a>, including the <a href="./interfaces/dashboard.html#worksheets">worksheets</a>, <a href="./interfaces/markscollection.html">marks</a>, <a href="./interfaces/filter.html">filters</a>, <a href="./interfaces/parameter.html">parameters</a>, and <a href="./interfaces/datasource.html">data sources</a>. For example, to access the worksheet in a workbook (after initialization), you might have a line of code that looks like the following: <br> <code>const worksheet = tableau.extensions.worksheetContent</code></td>
9898
</tr>
9999
<tr>
100100
<td align="left"><a href="./interfaces/settings.html">Settings</a></td>
@@ -113,15 +113,15 @@ <h1>Tableau Extensions API</h1>
113113
<h2>Dashboard extensions</h2>
114114
</a>
115115
<p>The following diagram shows the relationship between the extensions namespace and the worksheets in
116-
the dashboard. For more information, see <a href="./trex_api_about.html">Tableau Extensions API Basics</a>.</p>
117-
<p><img src="../assets/tab_ext_class_worksheet.png" alt="Extensions API namespace hierarchy"></p>
116+
the dashboard. For more information, see <a href="../docs/trex_api_about">Tableau Extensions API Basics</a>.</p>
117+
<p><img src="../img/tab_ext_class_worksheet.png" alt="Extensions API namespace hierarchy"></p>
118118
<hr>
119119
<a href="#viz-extensions-available-in-beta-only" id="viz-extensions-available-in-beta-only" style="color: inherit; text-decoration: none;">
120-
<h2>Viz extensions (available in beta only)</h2>
120+
<h2>Viz extensions</h2>
121121
</a>
122122
<p>The following diagram shows the relationship between the extensions namespace and the worksheets in
123-
the workbook. For more information, see <a href="./trex_api_about.html">Tableau Extensions API Basics</a>.</p>
124-
<p><img src="../assets/tab_viz_ext_class_worksheet.png" alt="Viz Extensions API namespace hierarchy"></p>
123+
the workbook. For more information, see <a href="../docs/trex_api_about">Tableau Extensions API Basics</a>.</p>
124+
<p><img src="../img/tab_viz_ext_class_worksheet.png" alt="Viz Extensions API namespace hierarchy"></p>
125125
<!-- Copyright and build date -->
126126
<hr>
127127
<div style="text-align:center">

0 commit comments

Comments
 (0)