Skip to content

Commit 1ac2712

Browse files
authored
Merge pull request #70 from tableau/dev
0.8.0 Release
2 parents ab7d2ee + a50c8f1 commit 1ac2712

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+49283
-239
lines changed

Samples/DataSources/datasources.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" ></script>
1616

1717
<!-- Extensions Library (this will be hosted on a CDN eventually) -->
18-
<script src="../../lib/tableau-extensions-0.7.0.js"></script>
18+
<script src="../../lib/tableau-extensions-0.8.0.js"></script>
1919

2020
<!-- Our extension's code -->
2121
<script src="./dataSources.js"></script>

Samples/Filtering/filtering.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" ></script>
1616

1717
<!-- Extensions Library (this will be hosted on a CDN eventually) -->
18-
<script src="../../lib/tableau-extensions-0.7.0.js"></script>
18+
<script src="../../lib/tableau-extensions-0.8.0.js"></script>
1919

2020
<!-- Our extension's code -->
2121
<script src="./filtering.js"></script>

Samples/Parameters/parameters.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" ></script>
1616

1717
<!-- Extensions Library (this will be hosted on a CDN eventually) -->
18-
<script src="../../lib/tableau-extensions-0.7.0.js"></script>
18+
<script src="../../lib/tableau-extensions-0.8.0.js"></script>
1919

2020
<!-- Our extension's code -->
2121
<script src="./parameters.js"></script>

Samples/Settings/settings.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" ></script>
1515

1616
<!-- Extensions Library (this will be hosted on a CDN eventually) -->
17-
<script src="../../lib/tableau-extensions-0.7.0.js"></script>
17+
<script src="../../lib/tableau-extensions-0.8.0.js"></script>
1818

1919
<!-- Our extension's code -->
2020
<script src="./settings.js"></script>

Tutorial/Part_1/MarksSelection.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<script type="text/javascript" src="https://cdn.datatables.net/v/bs-3.3.7/jq-3.2.1/jq-3.2.1/dt-1.10.16/b-1.4.2/b-colvis-1.4.2/cr-1.4.1/fh-3.1.3/r-2.2.0/sc-1.4.3/datatables.min.js"></script>
1313

1414
<!-- Include the Tableau Extensions library so we can communicate with Tableau -->
15-
<script src="/lib/tableau-extensions-0.7.0.js"></script>
15+
<script src="/lib/tableau-extensions-0.8.0.js"></script>
1616

1717
<!-- Include our own style sheets and javascript code -->
1818
<link rel="stylesheet" href="./MarksSelection.css">

Tutorial/Part_1/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ Drag out the extension for Part 1 and you should see the name of your dashboard
2222

2323
![Part 1 Screenshot](../assets/Part_1.png)
2424

25-
[Next Section (Part 2 - Ask the User to Select a Sheet)](../Part_2/readme.md)
25+
[Next Section (Part 2 - Ask the User to Select a Sheet)](../Part_2/readme.md)

Tutorial/Part_2/MarksSelection.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<script type="text/javascript" src="https://cdn.datatables.net/v/bs-3.3.7/jq-3.2.1/jq-3.2.1/dt-1.10.16/b-1.4.2/b-colvis-1.4.2/cr-1.4.1/fh-3.1.3/r-2.2.0/sc-1.4.3/datatables.min.js"></script>
1313

1414
<!-- Include the Tableau Extensions library so we can communicate with Tableau -->
15-
<script src="/lib/tableau-extensions-0.7.0.js"></script>
15+
<script src="/lib/tableau-extensions-0.8.0.js"></script>
1616

1717
<!-- Include our own style sheets and javascript code -->
1818
<link rel="stylesheet" href="./MarksSelection.css">

Tutorial/Part_2/MarksSelection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
// The first step in choosing a sheet will be asking Tableau what sheets are available
2626
const worksheets = tableau.extensions.dashboardContent.dashboard.worksheets;
2727

28-
// Next, we loop through all of these worksheets and add buttons for each one
28+
// Next, we loop through all of these worksheets add add buttons for each one
2929
worksheets.forEach(function (worksheet) {
3030
// Declare our new button which contains the sheet name
3131
const button = $("<button type='button' class='btn btn-default btn-block'></button>");

Tutorial/Part_3/MarksSelection.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<script type="text/javascript" src="https://cdn.datatables.net/v/bs-3.3.7/jq-3.2.1/jq-3.2.1/dt-1.10.16/b-1.4.2/b-colvis-1.4.2/cr-1.4.1/fh-3.1.3/r-2.2.0/sc-1.4.3/datatables.min.js"></script>
1313

1414
<!-- Include the Tableau Extensions library so we can communicate with Tableau -->
15-
<script src="/lib/tableau-extensions-0.7.0.js"></script>
15+
<script src="/lib/tableau-extensions-0.8.0.js"></script>
1616

1717
<!-- Include our own style sheets and javascript code -->
1818
<link rel="stylesheet" href="./MarksSelection.css">

Tutorial/Part_4/MarksSelection.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<script type="text/javascript" src="https://cdn.datatables.net/v/bs-3.3.7/jq-3.2.1/jq-3.2.1/dt-1.10.16/b-1.4.2/b-colvis-1.4.2/cr-1.4.1/fh-3.1.3/r-2.2.0/sc-1.4.3/datatables.min.js"></script>
1313

1414
<!-- Include the Tableau Extensions library so we can communicate with Tableau -->
15-
<script src="/lib/tableau-extensions-0.7.0.js"></script>
15+
<script src="/lib/tableau-extensions-0.8.0.js"></script>
1616

1717
<!-- Include our own style sheets and javascript code -->
1818
<link rel="stylesheet" href="./MarksSelection.css">

0 commit comments

Comments
 (0)