You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xap-commits@incubator.apache.org by jm...@apache.org on 2006/09/21 00:15:03 UTC

svn commit: r448413 - /incubator/xap/trunk/src/xap/widgets/BaseWidget.js

Author: jmargaris
Date: Wed Sep 20 17:15:02 2006
New Revision: 448413

URL: http://svn.apache.org/viewvc?view=rev&rev=448413
Log:
deleted commented out code

Modified:
    incubator/xap/trunk/src/xap/widgets/BaseWidget.js

Modified: incubator/xap/trunk/src/xap/widgets/BaseWidget.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/widgets/BaseWidget.js?view=diff&rev=448413&r1=448412&r2=448413
==============================================================================
--- incubator/xap/trunk/src/xap/widgets/BaseWidget.js (original)
+++ incubator/xap/trunk/src/xap/widgets/BaseWidget.js Wed Sep 20 17:15:02 2006
@@ -24,23 +24,3 @@
 xap.widgets.BaseWidget = function() {
 	this._rootDomNode = document.createElement('div');
 }
-
-
-
-
-
-/*
-xap.widgets.BaseWidget.prototype.setY = function(y) {
-	this._rootDomNode.style.left = y;
-}
-
-xap.widgets.BaseWidget.prototype.setWidth = function(w) {
-	this._rootDomNode.style.width = w;
-}
-
-
-xap.widgets.BaseWidget.prototype.setHeight = function(h) {
-	this._rootDomNode.style.height = h;
-}
-*/
-