diff options
author | Automerge <automerge@vaadin.com> | 2012-03-23 11:45:20 +0000 |
---|---|---|
committer | Automerge <automerge@vaadin.com> | 2012-03-23 11:45:20 +0000 |
commit | eec3d2c300ffaffec27a35108da9a75d99c3b8bf (patch) | |
tree | eecac1db6eee806de7c3d8fa09ac552506300cf7 /src | |
parent | 2015a753c18ef8121e215fb252621ae168e0bab9 (diff) | |
download | vaadin-framework-eec3d2c300ffaffec27a35108da9a75d99c3b8bf.tar.gz vaadin-framework-eec3d2c300ffaffec27a35108da9a75d99c3b8bf.zip |
[merge from 6.7] #8563 Corrected invalid "this" reference
svn changeset:23302/svn branch:6.8
Diffstat (limited to 'src')
-rw-r--r-- | src/com/vaadin/terminal/gwt/client/ComputedStyle.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/vaadin/terminal/gwt/client/ComputedStyle.java b/src/com/vaadin/terminal/gwt/client/ComputedStyle.java index 662cb5fc34..e994e47d63 100644 --- a/src/com/vaadin/terminal/gwt/client/ComputedStyle.java +++ b/src/com/vaadin/terminal/gwt/client/ComputedStyle.java @@ -88,7 +88,7 @@ public class ComputedStyle { var left = style.left, rsLeft = elem.runtimeStyle.left; // Put in the new values to get a computed value out - elem.runtimeStyle.left = this.left; + elem.runtimeStyle.left = cs.left; style.left = ret || 0; ret = style.pixelLeft + "px"; |