http://www.mediawiki.org/wiki/Special:Code/MediaWiki/97825

Revision: 97825
Author:   tparscal
Date:     2011-09-22 17:14:37 +0000 (Thu, 22 Sep 2011)
Log Message:
-----------
Removed line property

Modified Paths:
--------------
    trunk/parsers/wikidom/lib/synth/es.Position.js

Modified: trunk/parsers/wikidom/lib/synth/es.Position.js
===================================================================
--- trunk/parsers/wikidom/lib/synth/es.Position.js      2011-09-22 16:49:25 UTC 
(rev 97824)
+++ trunk/parsers/wikidom/lib/synth/es.Position.js      2011-09-22 17:14:37 UTC 
(rev 97825)
@@ -8,17 +8,14 @@
  * @param left {Integer} Horizontal position
  * @param top {Integer} Vertical top position
  * @param bottom {Integer} Vertical bottom position of bottom (optional, 
default: top)
- * @param line {Integer} Rendered line index (optional, default: undefined)
  * @property left {Integer} Horizontal position
  * @property top {Integer} Vertical top position
  * @property bottom {Integer} Vertical bottom position of bottom
- * @property line {Integer} Rendered line index
  */
-es.Position = function( left, top, bottom, line ) {
+es.Position = function( left, top, bottom ) {
        this.left = left || 0;
        this.top = top || 0;
        this.bottom = bottom || this.top;
-       this.line = line;
 };
 
 /* Static Methods */


_______________________________________________
MediaWiki-CVS mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs

Reply via email to