Skip to content

Commit ef1d2a3

Browse files
committed
🎨 Update CSV Icon
1 parent 496ff91 commit ef1d2a3

26 files changed

+48
-26
lines changed

docs/to-do-list.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ TODO List
2727
After NPM release update all "../js/" to the CDN Page
2828
Use global search of "../js/" to find files that need to be updated
2929
- This is being worked on mid-Feb 2022 and will likely be published by the end of this month
30-
- Need to test more browsers, IE, Safari, etc
31-
- Need a CSV icon (currently Excel icon is used for both Excel and CSV)
30+
- Verify new CSV icon with IE and different screens
3231

3332
**) Update the Getting Started CSS Template used here:
3433
https://www.dataformsjs.com/en/getting-started

examples/countries-no-spa-hbs.htm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ <h1>Countries</h1>
4242
data-export-excel-selector="table"
4343
data-export-file-name="Countries.xlsx">
4444
<img class="download"
45-
src="img/Excel.svg"
45+
src="img/CSV.svg"
4646
height="16"
4747
width="16"
4848
alt="Download to CSV"

examples/countries-no-spa-js.htm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ <h1>Countries</h1>
4141
data-export-excel-selector="table"
4242
data-export-file-name="Countries.xlsx">
4343
<img class="download"
44-
src="img/Excel.svg"
44+
src="img/CSV.svg"
4545
height="16"
4646
width="16"
4747
alt="Download to CSV"

examples/countries-no-spa-vue.htm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ <h1>Countries</h1>
5656
data-export-excel-selector="table"
5757
data-export-file-name="Countries.xlsx">
5858
<img class="download"
59-
src="img/Excel.svg"
59+
src="img/CSV.svg"
6060
height="16"
6161
width="16"
6262
alt="Download to CSV"

examples/countries-no-spa-web.htm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ <h1>Countries</h1>
5050
data-export-excel-selector="table"
5151
data-export-file-name="Countries.xlsx">
5252
<img class="download"
53-
src="img/Excel.svg"
53+
src="img/CSV.svg"
5454
height="16"
5555
width="16"
5656
alt="Download to CSV"

examples/html/cities-hbs.htm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ <h1>{{i18n 'Largest Cities in'}} {{country}}, {{region}}</h1>
1616
data-export-excel-selector="table"
1717
data-export-file-name="{{i18n 'Cities'}}.xlsx">
1818
<img class="download"
19-
src="img/Excel.svg"
19+
src="img/CSV.svg"
2020
height="16"
2121
width="16"
2222
alt="{{i18n 'Download to CSV'}}"

examples/html/cities-js.htm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ <h1><span data-i18n="Largest Cities in"></span> <span data-bind="country"></span
1717
data-export-file-name="[[Cities]].xlsx"
1818
data-i18n-attr="alt, title, data-export-file-name">
1919
<img class="download"
20-
src="img/Excel.svg"
20+
src="img/CSV.svg"
2121
height="16"
2222
width="16"
2323
alt="Download to CSV"

examples/html/cities-vue.htm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ <h1><span v-i18n="'Largest Cities in'"></span> {{ country }}, {{ region }}</h1>
1717
data-export-file-name="[[Cities]].xlsx"
1818
v-i18n-attr="'alt, title, data-export-file-name'">
1919
<img class="download"
20-
src="img/Excel.svg"
20+
src="img/CSV.svg"
2121
height="16"
2222
width="16"
2323
alt="Download to CSV"

examples/html/cities-web.htm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ <h1><span data-i18n="Largest Cities in"></span> <span url-param="country"></span
1414
data-export-file-name="[[Cities]].xlsx"
1515
data-i18n-attr="alt, title, data-export-file-name">
1616
<img class="download"
17-
src="img/Excel.svg"
17+
src="img/CSV.svg"
1818
height="16"
1919
width="16"
2020
alt="Download to CSV"

examples/html/countries-hbs.htm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ <h1>{{i18n 'Countries'}}</h1>
1616
data-export-excel-selector="table"
1717
data-export-file-name="{{i18n 'Countries'}}.xlsx">
1818
<img class="download"
19-
src="img/Excel.svg"
19+
src="img/CSV.svg"
2020
height="16"
2121
width="16"
2222
alt="{{i18n 'Download to CSV'}}"

0 commit comments

Comments
 (0)