diff options
author | Artur Signell <artur@vaadin.com> | 2014-08-20 14:18:58 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2014-08-20 15:15:58 +0300 |
commit | 298d794533ec0a0e0fed807178abd26268c67757 (patch) | |
tree | beef791a2a977529e45ef7f3cc723c5aaffdf732 /client | |
parent | 4bbf0565b92c4168273b2bb74ded05911cbdf2bf (diff) | |
download | vaadin-framework-298d794533ec0a0e0fed807178abd26268c67757.tar.gz vaadin-framework-298d794533ec0a0e0fed807178abd26268c67757.zip |
Do not hide handle as it causes IE8 problems (#14412)
Change-Id: I2b981c00bf1ef3b9e1e0ccd1cdd3678016b11d14
Diffstat (limited to 'client')
-rw-r--r-- | client/src/com/vaadin/client/ui/VSlider.java | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/client/src/com/vaadin/client/ui/VSlider.java b/client/src/com/vaadin/client/ui/VSlider.java index bc314e0314..86e5ef129d 100644 --- a/client/src/com/vaadin/client/ui/VSlider.java +++ b/client/src/com/vaadin/client/ui/VSlider.java @@ -22,7 +22,6 @@ import com.google.gwt.dom.client.Element; import com.google.gwt.dom.client.Style.Display; import com.google.gwt.dom.client.Style.Overflow; import com.google.gwt.dom.client.Style.Unit; -import com.google.gwt.dom.client.Style.Visibility; import com.google.gwt.event.dom.client.KeyCodes; import com.google.gwt.event.logical.shared.ValueChangeEvent; import com.google.gwt.event.logical.shared.ValueChangeHandler; @@ -122,7 +121,6 @@ public class VSlider extends SimpleFocusablePanel implements Field, // Hide initially smaller.getStyle().setDisplay(Display.NONE); bigger.getStyle().setDisplay(Display.NONE); - handle.getStyle().setVisibility(Visibility.HIDDEN); sinkEvents(Event.MOUSEEVENTS | Event.ONMOUSEWHEEL | Event.KEYEVENTS | Event.FOCUSEVENTS | Event.TOUCHEVENTS); @@ -254,9 +252,6 @@ public class VSlider extends SimpleFocusablePanel implements Field, // clear unnecessary opposite handle attribute handle.getStyle().clearProperty(oppositeHandleAttribute); - - // Restore visibility - handle.getStyle().setVisibility(Visibility.VISIBLE); } @Override |