1
0
mirror of https://github.com/DataTables/DataTables.git synced 2025-02-27 00:54:15 +01:00

Fix: Update Ajax data source demo with new location for the data source file

This commit is contained in:
Allan Jardine 2011-05-04 18:37:25 +01:00
parent 06d1802874
commit fa85d34b24

View File

@ -15,7 +15,7 @@
$(document).ready(function() {
var oTable = $('#example').dataTable( {
"bProcessing": true,
"sAjaxSource": '../examples_support/json_source.txt'
"sAjaxSource": '../ajax/sources/arrays.txt'
} );
} );
</script>
@ -62,7 +62,7 @@
<pre>$(document).ready(function() {
$('#example').dataTable( {
"bProcessing": true,
"sAjaxSource": '../examples_support/json_source.txt'
"sAjaxSource": '../ajax/sources/arrays.txt'
} );
} );</pre>