mirror of
https://github.com/DataTables/DataTables.git
synced 2025-01-18 11:52:11 +01:00
Remove trailing commas!
This commit is contained in:
parent
923c640298
commit
a22727c84b
30
media/js/jquery.dataTables.js
vendored
30
media/js/jquery.dataTables.js
vendored
@ -70,32 +70,14 @@
|
||||
function _fnAddColumn( oSettings, nTh )
|
||||
{
|
||||
var iCol = oSettings.aoColumns.length;
|
||||
var oCol = {
|
||||
"sType": null,
|
||||
"_bAutoType": true,
|
||||
"bVisible": true,
|
||||
"bSearchable": true,
|
||||
"bSortable": true,
|
||||
"asSorting": [ 'asc', 'desc' ],
|
||||
var oCol = $.extend( {}, DataTable.models.oColumn, {
|
||||
"sSortingClass": oSettings.oClasses.sSortable,
|
||||
"sSortingClassJUI": oSettings.oClasses.sSortJUI,
|
||||
"sTitle": nTh ? nTh.innerHTML : '',
|
||||
"sName": '',
|
||||
"sWidth": null,
|
||||
"sWidthOrig": null,
|
||||
"sClass": null,
|
||||
"fnRender": null,
|
||||
"bUseRendered": true,
|
||||
"aDataSort": [ iCol ],
|
||||
"mDataProp": iCol,
|
||||
"fnGetData": null,
|
||||
"fnSetData": null,
|
||||
"sSortDataType": 'std',
|
||||
"sDefaultContent": null,
|
||||
"sContentPadding": "",
|
||||
"nTh": nTh ? nTh : document.createElement('th'),
|
||||
"nTf": null
|
||||
};
|
||||
"nTh": nTh ? nTh : document.createElement('th')
|
||||
} );
|
||||
oSettings.aoColumns.push( oCol );
|
||||
|
||||
/* Add a column specific filter */
|
||||
@ -4725,7 +4707,7 @@
|
||||
oOpts = $.extend( {}, {
|
||||
"filter": "none", // applied
|
||||
"order": "current", // "original"
|
||||
"page": "all", // current
|
||||
"page": "all" // current
|
||||
}, oOpts );
|
||||
|
||||
// Current page implies that order=current and fitler=applied, since it is fairly
|
||||
@ -8444,7 +8426,7 @@
|
||||
* } );
|
||||
* } );
|
||||
*/
|
||||
"sPrevious": "Previous",
|
||||
"sPrevious": "Previous"
|
||||
},
|
||||
|
||||
/**
|
||||
@ -8711,7 +8693,7 @@
|
||||
* } );
|
||||
* } );
|
||||
*/
|
||||
"sZeroRecords": "No matching records found",
|
||||
"sZeroRecords": "No matching records found"
|
||||
},
|
||||
|
||||
|
||||
|
@ -47,7 +47,7 @@ this.$ = function ( sSelector, oOpts )
|
||||
oOpts = $.extend( {}, {
|
||||
"filter": "none", // applied
|
||||
"order": "current", // "original"
|
||||
"page": "all", // current
|
||||
"page": "all" // current
|
||||
}, oOpts );
|
||||
|
||||
// Current page implies that order=current and fitler=applied, since it is fairly
|
||||
|
@ -9,32 +9,14 @@
|
||||
function _fnAddColumn( oSettings, nTh )
|
||||
{
|
||||
var iCol = oSettings.aoColumns.length;
|
||||
var oCol = {
|
||||
"sType": null,
|
||||
"_bAutoType": true,
|
||||
"bVisible": true,
|
||||
"bSearchable": true,
|
||||
"bSortable": true,
|
||||
"asSorting": [ 'asc', 'desc' ],
|
||||
var oCol = $.extend( {}, DataTable.models.oColumn, {
|
||||
"sSortingClass": oSettings.oClasses.sSortable,
|
||||
"sSortingClassJUI": oSettings.oClasses.sSortJUI,
|
||||
"sTitle": nTh ? nTh.innerHTML : '',
|
||||
"sName": '',
|
||||
"sWidth": null,
|
||||
"sWidthOrig": null,
|
||||
"sClass": null,
|
||||
"fnRender": null,
|
||||
"bUseRendered": true,
|
||||
"aDataSort": [ iCol ],
|
||||
"mDataProp": iCol,
|
||||
"fnGetData": null,
|
||||
"fnSetData": null,
|
||||
"sSortDataType": 'std',
|
||||
"sDefaultContent": null,
|
||||
"sContentPadding": "",
|
||||
"nTh": nTh ? nTh : document.createElement('th'),
|
||||
"nTf": null
|
||||
};
|
||||
"nTh": nTh ? nTh : document.createElement('th')
|
||||
} );
|
||||
oSettings.aoColumns.push( oCol );
|
||||
|
||||
/* Add a column specific filter */
|
||||
|
@ -1159,7 +1159,7 @@ DataTable.models.oInit = {
|
||||
* } );
|
||||
* } );
|
||||
*/
|
||||
"sPrevious": "Previous",
|
||||
"sPrevious": "Previous"
|
||||
},
|
||||
|
||||
/**
|
||||
@ -1426,7 +1426,7 @@ DataTable.models.oInit = {
|
||||
* } );
|
||||
* } );
|
||||
*/
|
||||
"sZeroRecords": "No matching records found",
|
||||
"sZeroRecords": "No matching records found"
|
||||
},
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user