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:
parent
b36439b6b7
commit
c12b50daef
@ -1 +1 @@
|
||||
41595a1308eb1fb0cba525d613bf5e3594888f33
|
||||
9e579f5fd864d5e104517a3b00716aac43396913
|
||||
|
@ -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"
|
||||
|
@ -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",
|
||||
|
@ -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/",
|
||||
|
2
media/js/jquery.dataTables.js
vendored
2
media/js/jquery.dataTables.js
vendored
@ -1542,7 +1542,7 @@
|
||||
}
|
||||
|
||||
/* Add user defined class */
|
||||
if ( oCol.sClass !== null )
|
||||
if ( oCol.sClass )
|
||||
{
|
||||
nTd.className += ' '+oCol.sClass;
|
||||
}
|
||||
|
@ -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",
|
||||
|
Loading…
x
Reference in New Issue
Block a user