Skip to content

Commit

Permalink
Fix: Due to use of an HTML entity, DataTables could fail on XHTML pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Allan Jardine committed Feb 17, 2015
1 parent 9f9ae1c commit d9617d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/ext/ext.paging.js
Expand Up @@ -85,7 +85,7 @@ $.extend( true, DataTable.ext.renderer, {

switch ( button ) {
case 'ellipsis':
container.append('<span>&hellip;</span>');
container.append('<span>&#x2026;</span>');
break;

case 'first':
Expand Down

0 comments on commit d9617d8

Please sign in to comment.