1
0
mirror of https://github.com/DataTables/DataTables.git synced 2025-02-19 17:54:14 +01:00

Fix: A single space was being added to all cell classes on

initialisation
This commit is contained in:
Allan Jardine 2014-02-17 10:18:42 +00:00
parent b36439b6b7
commit c12b50daef
6 changed files with 6 additions and 6 deletions

View File

@ -1 +1 @@
41595a1308eb1fb0cba525d613bf5e3594888f33
9e579f5fd864d5e104517a3b00716aac43396913

View File

@ -1,6 +1,6 @@
{
"name": "datatables",
"version": "1.10.0-beta.2.dev",
"version": "1.10.0-beta.2",
"main": [
"media/js/jquery.dataTables.js",
"media/css/jquery.dataTables.css"

View File

@ -1,6 +1,6 @@
{
"name": "datatables/datatables",
"version": "1.10.0-beta.2.dev",
"version": "1.10.0-beta.2",
"description": "DataTables is a plug-in for the jQuery Javascript library. It is a highly flexible tool, based upon the foundations of progressive enhancement, which will add advanced interaction controls to any HTML table.",
"homepage": "http://www.datatables.net/",
"author": "SpryMedia",

View File

@ -1,6 +1,6 @@
{
"name": "DataTables",
"version": "1.10.0-beta.2.dev",
"version": "1.10.0-beta.2",
"description": "DataTables enhances HTML tables with the ability to sort, filter and page the data in the table very easily. It provides a comprehensive API and set of configuration options, allowing you to consume data from virtually any data source.",
"homepage": "http://datatables.net/",
"docs": "http://datatables.net/",

View File

@ -1542,7 +1542,7 @@
}
/* Add user defined class */
if ( oCol.sClass !== null )
if ( oCol.sClass )
{
nTd.className += ' '+oCol.sClass;
}

View File

@ -1,6 +1,6 @@
{
"name": "DataTables",
"version": "1.10.0-beta.2.dev",
"version": "1.10.0-beta.2",
"title": "DataTables",
"author": {
"name": "Allan Jardine",