diff --git a/media/js/jquery.dataTables.js b/media/js/jquery.dataTables.js index adb16b0e..ec0a9f56 100644 --- a/media/js/jquery.dataTables.js +++ b/media/js/jquery.dataTables.js @@ -8163,6 +8163,7 @@ * rendered as "1,000,000") to help readability for the end user. This * function will override the default method DataTables uses. * @type function + * @member * @param {int} iIn number to be formatted * @returns {string} formatted string for DataTables to show the number * @dtopt Callbacks @@ -8348,6 +8349,7 @@ * application. For example you could use POST data, or pull information from * a Gears or AIR database. * @type function + * @member * @param {string} sSource HTTP source to obtain the data from (sAjaxSource) * @param {array} aoData A key/value pair object containing the data to send * to the server @@ -8434,6 +8436,7 @@ * state of a table is loaded. By default DataTables will load from its state saving * cookie, but you might wish to use local storage (HTML5) or a server-side database. * @type function + * @member * @param {object} oSettings DataTables settings object * @return {object} The DataTables state object to be loaded * @dtopt Callbacks @@ -8536,6 +8539,7 @@ * information for the table is stored - by default it will use a cookie, but you * might want to use local storage (HTML5) or a server-side database. * @type function + * @member * @param {object} oSettings DataTables settings object * @param {object} oData The state object to be saved * @dtopt Callbacks @@ -10959,9 +10963,11 @@ * 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 it may be accessed and manipulated, or jQuery.fn.dataTable.ext. + * Note that the DataTable.ext object is available through + * jQuery.fn.dataTable.ext where it may be accessed and manipulated. It is + * also aliased to jQuery.fn.dataTableExt for historic reasons. * @namespace + * @extends DataTable.models.ext */ DataTable.ext = $.extend( true, {}, DataTable.models.ext ); diff --git a/media/src/DataTables.js b/media/src/DataTables.js index d33d89cf..09296199 100644 --- a/media/src/DataTables.js +++ b/media/src/DataTables.js @@ -125,9 +125,11 @@ * 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 it may be accessed and manipulated, or jQuery.fn.dataTable.ext. + * Note that the DataTable.ext object is available through + * jQuery.fn.dataTable.ext where it may be accessed and manipulated. It is + * also aliased to jQuery.fn.dataTableExt for historic reasons. * @namespace + * @extends DataTable.models.ext */ DataTable.ext = $.extend( true, {}, DataTable.models.ext ); require('ext.classes.js'); diff --git a/media/src/model/model.defaults.js b/media/src/model/model.defaults.js index e24e6220..292cd14f 100644 --- a/media/src/model/model.defaults.js +++ b/media/src/model/model.defaults.js @@ -697,6 +697,7 @@ DataTable.defaults = { * rendered as "1,000,000") to help readability for the end user. This * function will override the default method DataTables uses. * @type function + * @member * @param {int} iIn number to be formatted * @returns {string} formatted string for DataTables to show the number * @dtopt Callbacks @@ -882,6 +883,7 @@ DataTable.defaults = { * application. For example you could use POST data, or pull information from * a Gears or AIR database. * @type function + * @member * @param {string} sSource HTTP source to obtain the data from (sAjaxSource) * @param {array} aoData A key/value pair object containing the data to send * to the server @@ -968,6 +970,7 @@ DataTable.defaults = { * state of a table is loaded. By default DataTables will load from its state saving * cookie, but you might wish to use local storage (HTML5) or a server-side database. * @type function + * @member * @param {object} oSettings DataTables settings object * @return {object} The DataTables state object to be loaded * @dtopt Callbacks @@ -1070,6 +1073,7 @@ DataTable.defaults = { * information for the table is stored - by default it will use a cookie, but you * might want to use local storage (HTML5) or a server-side database. * @type function + * @member * @param {object} oSettings DataTables settings object * @param {object} oData The state object to be saved * @dtopt Callbacks