sheet-happens 0.0.30 → 0.0.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1558,12 +1558,12 @@ var parsePastedHtml = function parsePastedHtml(selection, html) {
1558
1558
  y++;
1559
1559
  }
1560
1560
 
1561
- right = Math.max(right, x);
1561
+ right = Math.max(right, x - 1);
1562
1562
  }
1563
1563
  }
1564
1564
  }
1565
1565
 
1566
- bottom = y;
1566
+ bottom = Math.max(top, y - 1);
1567
1567
  return {
1568
1568
  selection: [[left, top], [right, bottom]],
1569
1569
  changes: changes