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

Fix - docs: fnStateLoad example has a spare parameter (although not in the parameters list). Removed

This commit is contained in:
Allan Jardine 2012-04-29 08:23:17 +01:00
parent 2884ee23d2
commit c2a2b4f531
2 changed files with 2 additions and 2 deletions

View File

@ -8599,7 +8599,7 @@
* $(document).ready(function() {
* $('#example').dataTable( {
* "bStateSave": true,
* "fnStateLoad": function (oSettings, oData) {
* "fnStateLoad": function (oSettings) {
* var o;
*
* // Send an Ajax request to the server to get the data. Note that

View File

@ -980,7 +980,7 @@ DataTable.defaults = {
* $(document).ready(function() {
* $('#example').dataTable( {
* "bStateSave": true,
* "fnStateLoad": function (oSettings, oData) {
* "fnStateLoad": function (oSettings) {
* var o;
*
* // Send an Ajax request to the server to get the data. Note that