From dc0fffa316cd460086c4dcbfd12891ce7b327778 Mon Sep 17 00:00:00 2001 From: Allan Jardine Date: Sat, 28 Dec 2013 11:22:37 +0000 Subject: [PATCH] Dev: Remove debug --- .datatables-commit-sync | 2 +- examples/basic_init/zero_configuration.html | 8 +------- media/js/jquery.dataTables.js | 2 -- 3 files changed, 2 insertions(+), 10 deletions(-) diff --git a/.datatables-commit-sync b/.datatables-commit-sync index 0ab65775..e901cc3b 100644 --- a/.datatables-commit-sync +++ b/.datatables-commit-sync @@ -1 +1 @@ -2fb2b00cc5c993827c36bc0bd768e96861c31e9c +67966e5b14927fa57bd3aedf7bc9c1c724b909d3 diff --git a/examples/basic_init/zero_configuration.html b/examples/basic_init/zero_configuration.html index 7b2886d2..ab5443eb 100644 --- a/examples/basic_init/zero_configuration.html +++ b/examples/basic_init/zero_configuration.html @@ -10,10 +10,6 @@ @@ -558,9 +554,7 @@ $(document).ready(function() {

This example uses a little bit of additional CSS beyond what is loaded from the library files (below), in order to correctly display the table. The additional CSS used is shown - below:

tr.red { background-color: red !important; } - tr.blue { background-color: blue !important; } - tr.green { background-color: green !important; } + below:

The following CSS library files are loaded for use in this example to provide the styling of the diff --git a/media/js/jquery.dataTables.js b/media/js/jquery.dataTables.js index ad8bde18..04033cc8 100644 --- a/media/js/jquery.dataTables.js +++ b/media/js/jquery.dataTables.js @@ -1540,7 +1540,6 @@ tr.id = data.DT_RowId; } - console.log( '_fnRowAttributes', row, data.DT_RowClass ); if ( data.DT_RowClass ) { // Remove any classes added by DT_RowClass before var a = data.DT_RowClass.split(' '); @@ -1548,7 +1547,6 @@ _unique( row.__rowc.concat( a ) ) : a; - console.log( row.__rowc ); $(tr) .removeClass( row.__rowc.join(' ') ) .addClass( data.DT_RowClass );