[Dojo-checkins] bill - r3685 - trunk/src/widget
dojo-checkins-admin at dojotoolkit.org
dojo-checkins-admin at dojotoolkit.org
Thu Apr 27 08:57:24 MDT 2006
Author: bill
Date: Thu Apr 27 08:57:24 2006
New Revision: 3685
Modified:
trunk/src/widget/ResizeHandle.js
Log:
remove unused code
Modified: trunk/src/widget/ResizeHandle.js
==============================================================================
--- trunk/src/widget/ResizeHandle.js (original)
+++ trunk/src/widget/ResizeHandle.js Thu Apr 27 08:57:24 2006
@@ -36,9 +36,6 @@
this.targetElm = dojo.widget.byId(this.targetElmId);
if (!this.targetElm){ return; }
- var screenX = window.event ? window.event.clientX : e.pageX;
- var screenY = window.event ? window.event.clientY : e.pageY;
-
this.isSizing = true;
this.startPoint = {'x':e.clientX, 'y':e.clientY};
this.startSize = {'w':dojo.style.getOuterWidth(this.targetElm.domNode), 'h':dojo.style.getOuterHeight(this.targetElm.domNode)};
More information about the Dojo-checkins
mailing list