diff --git a/media/js/jquery.dataTables.js b/media/js/jquery.dataTables.js index 65c0205d..0fe84b2d 100644 --- a/media/js/jquery.dataTables.js +++ b/media/js/jquery.dataTables.js @@ -35,6 +35,10 @@ * HTML table. For a full list of features please refer to * DataTables.net. * + * Note that the DataTable object is not a global variable but is + * aliased to jQuery.fn.DataTable and jQuery.fn.dataTable through which + * it may be accessed. + * * @class * @param {object} [oInit={}] Configuration object for DataTables. Options * are defined by {@link DataTable.models.oInit} @@ -6392,6 +6396,9 @@ /** * Private data store, containing all of the settings objects that are created for the * tables on a given page. + * + * Note that the DataTable.settings object is aliased to jQuery.fn.dataTableExt + * through which is may be accessed and manipulated, or jQuery.fn.dataTable.settings. * @member * @type array * @default [] @@ -9827,6 +9834,9 @@ /** * Extension object for DataTables that is used to provide all extension options. * See {@link DataTable.models.ext} for full information about the extension object. + * + * Note that the DataTable.ext object is aliased to jQuery.fn.dataTableExt + * through which is may be accessed and manipulated, or jQuery.fn.dataTable.ext. * @namespace */ DataTable.ext = $.extend( true, {}, DataTable.models.ext ); diff --git a/media/src/DataTables.js b/media/src/DataTables.js index a92b6298..c0427b91 100644 --- a/media/src/DataTables.js +++ b/media/src/DataTables.js @@ -35,6 +35,10 @@ * HTML table. For a full list of features please refer to * DataTables.net. * + * Note that the DataTable object is not a global variable but is + * aliased to jQuery.fn.DataTable and jQuery.fn.dataTable through which + * it may be accessed. + * * @class * @param {object} [oInit={}] Configuration object for DataTables. Options * are defined by {@link DataTable.models.oInit} @@ -96,6 +100,9 @@ /** * Private data store, containing all of the settings objects that are created for the * tables on a given page. + * + * Note that the DataTable.settings object is aliased to jQuery.fn.dataTableExt + * through which is may be accessed and manipulated, or jQuery.fn.dataTable.settings. * @member * @type array * @default [] @@ -119,6 +126,9 @@ /** * Extension object for DataTables that is used to provide all extension options. * See {@link DataTable.models.ext} for full information about the extension object. + * + * Note that the DataTable.ext object is aliased to jQuery.fn.dataTableExt + * through which is may be accessed and manipulated, or jQuery.fn.dataTable.ext. * @namespace */ DataTable.ext = $.extend( true, {}, DataTable.models.ext );