From 6d0d1100f2b73c08def169d58d1ca2049f47a1ee Mon Sep 17 00:00:00 2001 From: Allan Jardine Date: Thu, 15 Dec 2011 12:43:26 +0000 Subject: [PATCH] Update documentation for column defaults name change --- media/js/jquery.dataTables.js | 14 +++++++------- media/src/DataTables.js | 2 +- media/src/model/model.column.js | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/media/js/jquery.dataTables.js b/media/js/jquery.dataTables.js index 0dd75bb1..f349db22 100644 --- a/media/js/jquery.dataTables.js +++ b/media/js/jquery.dataTables.js @@ -37,7 +37,7 @@ * * 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. {@link DataTable.models.oInitColumns} + * it may be accessed. * * @class * @param {object} [oInit={}] Configuration object for DataTables. Options @@ -7113,7 +7113,7 @@ * is held in the settings aoColumns array and contains all the information that * DataTables needs about each individual column. * - * Note that this object is related to {@link DataTable.models.oInitColumns} + * Note that this object is related to {@link DataTable.defaults.columns} * but this one is the internal data store for DataTables's cache of columns. * It should NOT be manipulated outside of DataTables. Any configuration should * be done through the initialisation options. @@ -7511,11 +7511,11 @@ * The aoColumns option in the initialisation parameter allows you to define * details about the way individual columns behave. For a full list of * column options that can be set, please see - * {@link DataTable.models.oInitColumns}. Note that if you use aoColumns to + * {@link DataTable.defaults.columns}. Note that if you use aoColumns to * define your columns, you must have an entry in the array for every single * column that you have in your table (these can be null if you don't which * to specify any options). - * @namespace + * @member */ "aoColumns": null, @@ -7525,7 +7525,7 @@ * each object in the array. This allows great flexibility when creating * tables, as the aoColumnDefs arrays can be of any length, targeting the * columns you specifically want. aoColumnDefs may use any of the column - * options available: {@link DataTable.models.oInitColumns}, but it _must_ + * options available: {@link DataTable.defaults.columns}, but it _must_ * have aTargets defined in each object in the array. Values in the aTargets * array may be: * - * @namespace + * @member */ "aoColumnDefs": null, @@ -8473,7 +8473,7 @@ * All strings that DataTables uses in the user interface that it creates * are defined in this object, allowing you to modified them individually or * completely replace them all as required. - * @namespace + * @member */ "oLanguage": { /** diff --git a/media/src/DataTables.js b/media/src/DataTables.js index e9c57073..5bdfc44f 100644 --- a/media/src/DataTables.js +++ b/media/src/DataTables.js @@ -37,7 +37,7 @@ * * 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. {@link DataTable.models.oInitColumns} + * it may be accessed. * * @class * @param {object} [oInit={}] Configuration object for DataTables. Options diff --git a/media/src/model/model.column.js b/media/src/model/model.column.js index afca4c58..ccc61ce4 100644 --- a/media/src/model/model.column.js +++ b/media/src/model/model.column.js @@ -6,7 +6,7 @@ * is held in the settings aoColumns array and contains all the information that * DataTables needs about each individual column. * - * Note that this object is related to {@link DataTable.models.oInitColumns} + * Note that this object is related to {@link DataTable.defaults.columns} * but this one is the internal data store for DataTables's cache of columns. * It should NOT be manipulated outside of DataTables. Any configuration should * be done through the initialisation options.