aboutsummaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
Diffstat (limited to 'client')
-rw-r--r--client/src/main/java/com/vaadin/client/widgets/Grid.java8
1 files changed, 3 insertions, 5 deletions
diff --git a/client/src/main/java/com/vaadin/client/widgets/Grid.java b/client/src/main/java/com/vaadin/client/widgets/Grid.java
index 76c261196e..8c08748213 100644
--- a/client/src/main/java/com/vaadin/client/widgets/Grid.java
+++ b/client/src/main/java/com/vaadin/client/widgets/Grid.java
@@ -4094,11 +4094,9 @@ public class Grid<T> extends ResizeComposite implements HasSelectionHandlers<T>,
* This is a workaround to make Chrome work like Firefox. In Chrome,
* normally if you start a drag on one cell and release on:
* <ul>
- * <li>that same cell, the click event is that {@code
- * <td>}.
- * <li>a cell on that same row, the click event is the parent {@code
- * <tr>
- * }.
+ * <li>that same cell, the click event is that <code>&lt;td></code>.
+ * <li>a cell on that same row, the click event is the parent
+ * <code>&lt;tr></code>.
* <li>a cell on another row, the click event is the table section ancestor
* ({@code <thead>}, {@code <tbody>} or {@code <tfoot>}).
* </ul>