1
0
mirror of https://github.com/DataTables/DataTables.git synced 2025-01-30 23:52:11 +01:00

Dev - build the last change (fee3ba7)

This commit is contained in:
Allan Jardine 2012-04-29 10:15:51 +01:00
parent fee3ba754f
commit d512e8cce7
2 changed files with 9 additions and 5 deletions

View File

@ -968,7 +968,6 @@
}, _fnGetCellData(oSettings, iRow, iCol, 'display') );
}
/**
* Create a new TR element (and it's TD children) for a row
* @param {object} oSettings dataTables settings object
@ -1542,11 +1541,11 @@
/* Replace jQuery UI constants */
if ( sAttr == "H" )
{
sAttr = "fg-toolbar ui-toolbar ui-widget-header ui-corner-tl ui-corner-tr ui-helper-clearfix";
sAttr = oSettings.oClasses.sJUIHeader;
}
else if ( sAttr == "F" )
{
sAttr = "fg-toolbar ui-toolbar ui-widget-header ui-corner-bl ui-corner-br ui-helper-clearfix";
sAttr = oSettings.oClasses.sJUIFooter;
}
/* The attribute can be in the format of "#id.class", "#id" or "class" This logic
@ -11238,7 +11237,9 @@
"sScrollFootInner": "dataTables_scrollFootInner",
/* Misc */
"sFooterTH": ""
"sFooterTH": "",
"sJUIHeader": "",
"sJUIFooter": ""
} );
@ -11282,7 +11283,9 @@
"sScrollFoot": "dataTables_scrollFoot ui-state-default",
/* Misc */
"sFooterTH": "ui-state-default"
"sFooterTH": "ui-state-default",
"sJUIHeader": "fg-toolbar ui-toolbar ui-widget-header ui-corner-tl ui-corner-tr ui-helper-clearfix",
"sJUIFooter": "fg-toolbar ui-toolbar ui-widget-header ui-corner-bl ui-corner-br ui-helper-clearfix"
} );

View File

@ -1,3 +1,4 @@
$.extend( DataTable.ext.oStdClasses, {
"sTable": "dataTable",