From: Michael M Slusarz Date: Sun, 21 Nov 2010 18:30:02 +0000 (-0700) Subject: code documentation cleanups X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=19a07008d1c8f4921f0289b1f03a6345fa3ca719;p=horde.git code documentation cleanups --- diff --git a/imp/js/viewport.js b/imp/js/viewport.js index ac9195cba..d33bfde58 100644 --- a/imp/js/viewport.js +++ b/imp/js/viewport.js @@ -226,9 +226,6 @@ * did not receive this file, see http://www.fsf.org/copyleft/gpl.html. */ -/** - * ViewPort - */ var ViewPort = Class.create({ initialize: function(opts) @@ -1268,7 +1265,8 @@ var ViewPort = Class.create({ : new ViewPort_Selection(this._getBuffer(this.view)); }, - // Creates a selection object comprising all entries contained in the buffer. + // Creates a selection object comprising all entries contained in the + // buffer. createSelectionBuffer: function(view) { return this.createSelection('rownum', this.getAllRows(view), view); @@ -1341,9 +1339,6 @@ var ViewPort = Class.create({ }), -/** - * ViewPort_Scroller - */ ViewPort_Scroller = Class.create({ // Variables initialized to undefined: // noupdate, scrollDiv, scrollbar, vertscroll, vp @@ -1455,13 +1450,9 @@ ViewPort_Scroller = Class.create({ }), -/** - * ViewPort_Buffer - * - * Note: recognize the difference between offset (current location in the +/* Note: recognize the difference between offset (current location in the * viewport - starts at 0) with start parameters (the row numbers - starts - * at 1). - */ + * at 1). */ ViewPort_Buffer = Class.create({ initialize: function(vp, view) @@ -1700,9 +1691,6 @@ ViewPort_Buffer = Class.create({ }), -/** - * ViewPort_Selection - */ ViewPort_Selection = Class.create({ // Define property to aid in object detection