Merge "Fix documentation for GridLayout to add a return type"

This commit is contained in:
jenkins-bot 2013-05-25 12:11:14 +00:00 committed by Gerrit Code Review
commit a8371251d3

View file

@ -155,6 +155,7 @@ ve.ui.GridLayout.prototype.update = function () {
* @method
* @param {number} x Horizontal position
* @param {number} y Vertical position
* @returns {ve.ui.PanelLayout} The panel at the given postion
*/
ve.ui.GridLayout.prototype.getPanel = function ( x, y ) {
return this.panels[( x * this.widths.length ) + y];