Skip to content

Commit

Permalink
Using dts as the namespace for CSS in keeping with the other DataTa…
Browse files Browse the repository at this point in the history
…bles extensions
  • Loading branch information
Allan Jardine committed Jul 30, 2018
1 parent a80d62c commit 8c2815c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/dataTables.scroller.js
Expand Up @@ -476,12 +476,12 @@ $.extend( Scroller.prototype, {
this.dom.table.style.left = "0px";

// Add class to 'announce' that we are a Scroller table
$(dt.table().container()).addClass('DTS');
$(dt.table().container()).addClass('dts DTS');

// Add a 'loading' indicator
if ( this.s.loadingIndicator )
{
this.dom.loader = $('<div class="dataTables_processing DTS_Loading">'+this.s.dt.oLanguage.sLoadingRecords+'</div>')
this.dom.loader = $('<div class="dataTables_processing dts_loading">'+this.s.dt.oLanguage.sLoadingRecords+'</div>')
.css('display', 'none');

$(this.dom.scroller.parentNode)
Expand Down

0 comments on commit 8c2815c

Please sign in to comment.