Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / ui / webui / resources / js / cr / ui / table / table_header.js
index f48eb5e..a05b264 100644 (file)
@@ -180,9 +180,10 @@ cr.define('cr.ui.table', function() {
     /**
      * Handles the touchstart event. If the touch happened close enough
      * to a splitter starts dragging.
-     * @param {TouchEvent} e The touch event.
+     * @param {Event} e The touch event.
      */
     handleTouchStart_: function(e) {
+      e = /** @type {TouchEvent} */ (e);
       if (e.touches.length != 1)
         return;
       var clientX = e.touches[0].clientX;