diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-06-28 19:45:35 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-06-28 19:45:35 +0300 |
commit | b9b9c2dcd65181e7a0a8bbcad80b51cdce0937d2 (patch) | |
tree | 97bd4fa9960e6e3d5861231a84d68b8b0494a354 /WebContent/statictestfiles | |
parent | 0026faa5f5796c68fd4e96afdbd8574dc54a515d (diff) | |
download | vaadin-framework-b9b9c2dcd65181e7a0a8bbcad80b51cdce0937d2.tar.gz vaadin-framework-b9b9c2dcd65181e7a0a8bbcad80b51cdce0937d2.zip |
Rename getWidgetElement() -> getElement() (#8888)
Diffstat (limited to 'WebContent/statictestfiles')
-rw-r--r-- | WebContent/statictestfiles/jsconnector.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/WebContent/statictestfiles/jsconnector.js b/WebContent/statictestfiles/jsconnector.js index d7f697dbf5..a87df92bc8 100644 --- a/WebContent/statictestfiles/jsconnector.js +++ b/WebContent/statictestfiles/jsconnector.js @@ -1,7 +1,7 @@ window.com_vaadin_tests_components_javascriptcomponent_BasicJavaScriptComponent_ExampleWidget = function() { var connector = this; - var rootElement = connector.getWidgetElement(); + var rootElement = connector.getElement(); rootElement.innerHTML = 'Hello world!'; rootElement.onclick = function() { connector.getRpcProxy().onClick("message"); |