From 8c2815c51454b13d6a26897fc3ab0e2435e703a9 Mon Sep 17 00:00:00 2001 From: Allan Jardine Date: Mon, 30 Jul 2018 15:35:19 +0100 Subject: [PATCH] Using `dts` as the namespace for CSS in keeping with the other DataTables extensions --- js/dataTables.scroller.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/dataTables.scroller.js b/js/dataTables.scroller.js index ffc19fc..31dc8ca 100644 --- a/js/dataTables.scroller.js +++ b/js/dataTables.scroller.js @@ -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 = $('
'+this.s.dt.oLanguage.sLoadingRecords+'
') + this.dom.loader = $('
'+this.s.dt.oLanguage.sLoadingRecords+'
') .css('display', 'none'); $(this.dom.scroller.parentNode)