1
0
mirror of https://github.com/DataTables/DataTables.git synced 2024-12-02 14:24:11 +01:00
DataTables/media/unit_testing/tests_onhold/2_js/sAjaxSource.js

20 lines
445 B
JavaScript
Raw Normal View History

2010-08-17 09:42:13 +02:00
// DATA_TEMPLATE: js_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( {
"aaData": gaaData
} );
var oSettings = oTable.fnSettings();
oTest.fnTest(
"Server side is off by default",
null,
function () { return oSettings.sAjaxSource == null; }
);
oTest.fnComplete();
} );