]> source.dussan.org Git - vaadin-framework.git/commitdiff
Typo fix
authorArtur Signell <artur.signell@itmill.com>
Fri, 5 Dec 2008 11:24:05 +0000 (11:24 +0000)
committerArtur Signell <artur.signell@itmill.com>
Fri, 5 Dec 2008 11:24:05 +0000 (11:24 +0000)
svn changeset:6094/svn branch:trunk

src/com/itmill/toolkit/terminal/gwt/client/Util.java

index fc33e2259b73878b53b9e8428d8cc7dde048293d..85df1f2759c1cdb3a6805b39493747655589d7bd 100644 (file)
@@ -542,7 +542,7 @@ public class Util {
           var rect = element.getBoundingClientRect();
           width = Math.ceil(rect.right - rect.left);
         } else {
-          width = elem.offsetWidth;
+          width = element.offsetWidth;
         }
         return width;
     }-*/;
@@ -555,7 +555,7 @@ public class Util {
           var rect = element.getBoundingClientRect();
           height = Math.ceil(rect.bottom - rect.top);
         } else {
-          height = elem.offsetHeight;
+          height = element.offsetHeight;
         }
         return height;
     }-*/;