mirror of
https://github.com/DataTables/DataTables.git
synced 2024-12-04 16:24:11 +01:00
18 lines
420 B
JavaScript
18 lines
420 B
JavaScript
|
// DATA_TEMPLATE: dom_data
|
||
|
oTest.fnStart( "sAjaxSource" );
|
||
|
|
||
|
/* Not interested in ajax source here other than to check it's default */
|
||
|
|
||
|
$(document).ready( function () {
|
||
|
/* Check the default */
|
||
|
var oTable = $('#example').dataTable();
|
||
|
var oSettings = oTable.fnSettings();
|
||
|
|
||
|
oTest.fnTest(
|
||
|
"Server side is off by default",
|
||
|
null,
|
||
|
function () { return oSettings.sAjaxSource == null; }
|
||
|
);
|
||
|
|
||
|
oTest.fnComplete();
|
||
|
} );
|