Missing param comments in methods updating popup widget

Change-Id: Id90ba76719472fe0b61e9d232b5cf72f086af915
This commit is contained in:
Ed Sanders 2013-09-26 15:26:54 +01:00
parent 9fbdd32986
commit a69ce9b2b6
2 changed files with 6 additions and 0 deletions

View file

@ -242,6 +242,7 @@ ve.ui.Context.prototype.update = function () {
* Updates the position and size.
*
* @method
* @param {boolean} [transition=false] Use a smooth transition
* @chainable
*/
ve.ui.Context.prototype.updateDimensions = function ( transition ) {

View file

@ -142,6 +142,11 @@ ve.ui.PopupWidget.prototype.hide = function () {
* Updates the position and size.
*
* @method
* @param {number} x Horizontal position
* @param {number} y Vertical position
* @param {number} width Width
* @param {number} height Height
* @param {boolean} [transition=false] Use a smooth transition
* @chainable
*/
ve.ui.PopupWidget.prototype.display = function ( x, y, width, height, transition ) {