X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fui%2Fwebui%2Fresources%2Fjs%2Fcr%2Fui%2Ftable%2Ftable_column_model.js;h=aefe1ba306252fe52e67ee2b0579f39b27b5b93a;hb=3545e9f2671f595d2a2f3ee75ca0393b01e35ef6;hp=1d9f600345bab937f4e1a4af501d4e8dbd4e0bfd;hpb=7d210d4c7e9ba36e635eabc5b5780495f8a63292;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/ui/webui/resources/js/cr/ui/table/table_column_model.js b/src/ui/webui/resources/js/cr/ui/table/table_column_model.js index 1d9f600..aefe1ba 100644 --- a/src/ui/webui/resources/js/cr/ui/table/table_column_model.js +++ b/src/ui/webui/resources/js/cr/ui/table/table_column_model.js @@ -57,7 +57,7 @@ cr.define('cr.ui.table', function() { /** * Sets name of column at the given index. * @param {number} index The index of the column. - * @param {string} Column name. + * @param {string} name Column name. */ setName: function(index, name) { if (index < 0 || index >= this.columns_.size - 1) @@ -90,7 +90,7 @@ cr.define('cr.ui.table', function() { /** * Sets width of column at the given index. * @param {number} index The index of the column. - * @param {number} Column width. + * @param {number} width Column width. */ setWidth: function(index, width) { if (index < 0 || index >= this.columns_.size - 1) @@ -131,7 +131,7 @@ cr.define('cr.ui.table', function() { /** * Render the column header. * @param {number} index The index of the column. - * @param {cr.ui.Table} Owner table. + * @param {cr.ui.Table} table Owner table. */ renderHeader: function(index, table) { var c = this.columns_[index];