Skip to content

Commit 8af6739

Browse files
author
dtbuild
committed
528e66bbd5a050d9c83f720d19864c40410326bf Fix: CSS output is ASCII only now - unicode characters are encoded
Sync to source repo @528e66bbd5a050d9c83f720d19864c40410326bf
1 parent 32c2947 commit 8af6739

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

css/dataTables.jqueryui.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -152,17 +152,17 @@ table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order:before {
152152
position: absolute;
153153
display: block;
154154
bottom: 50%;
155-
content: "";
156-
content: ""/"";
155+
content: "\25B2";
156+
content: "\25B2"/"";
157157
}
158158
table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order:after, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:after,
159159
table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order:after,
160160
table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order:after {
161161
position: absolute;
162162
display: block;
163163
top: 50%;
164-
content: "";
165-
content: ""/"";
164+
content: "\25BC";
165+
content: "\25BC"/"";
166166
}
167167
table.dataTable thead > tr > th.dt-orderable-asc, table.dataTable thead > tr > th.dt-orderable-desc, table.dataTable thead > tr > th.dt-ordering-asc, table.dataTable thead > tr > th.dt-ordering-desc,
168168
table.dataTable thead > tr > td.dt-orderable-asc,

datatables.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
],
1515
"src-repo": "http://github.com/DataTables/DataTablesSrc",
1616
"last-tag": "2.2.1",
17-
"last-sync": "990aa13065b2e3264ff1e2c82240f2db977b0762"
17+
"last-sync": "528e66bbd5a050d9c83f720d19864c40410326bf"
1818
}

0 commit comments

Comments
 (0)