Skip to content

Commit 638e0ca

Browse files
authored
Merge pull request #293 from jupytercalpoly/dev
0.7.5
2 parents 2a33fe6 + 8d98c20 commit 638e0ca

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
### Manipulate your tabular data responsively and effectively within JupyterLab.
44

5-
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/jupytercalpoly/jupyterlab-tabular-data-editor/master?urlpath=lab) ![Github Actions Status](https://github.com/jupytercalpoly/jupyterlab-tabular-data-editor/workflows/Build/badge.svg)
5+
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/jupytercalpoly/jupyterlab-tabular-data-editor/master?urlpath=lab) ![Github Actions Status](https://github.com/jupytercalpoly/jupyterlab-tabular-data-editor/workflows/Build/badge.svg) ![npm](https://img.shields.io/npm/v/jupyterlab-tabular-data-editor) ![npm](https://img.shields.io/npm/dt/jupyterlab-tabular-data-editor?color=orange)
66

77
### EXPERIMENTAL: This extension is still in alpha. The API is subject to frequent changes.
88

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jupyterlab-tabular-data-editor",
3-
"version": "0.7.4",
3+
"version": "0.7.5",
44
"description": "EXPERIMENTAL: JupyterLab Tabular Data Editor for CSV files",
55
"keywords": [
66
"jupyter",

src/drag.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ export class BoundedDrag extends Drag {
8282
if (this._boundingRegion || this._initializing) {
8383
const { left, top } = this.bound(clientX, clientY);
8484
const style = this.dragImage.style;
85-
style.top = `${left}px`;
86-
style.left = `${top}px`;
85+
style.left = `${left}px`;
86+
style.top = `${top}px`;
8787
this._initializing = false;
8888
}
8989
}

0 commit comments

Comments
 (0)