File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
### Manipulate your tabular data responsively and effectively within JupyterLab.
4
4
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 )
6
6
7
7
### EXPERIMENTAL: This extension is still in alpha. The API is subject to frequent changes.
8
8
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " jupyterlab-tabular-data-editor" ,
3
- "version" : " 0.7.4 " ,
3
+ "version" : " 0.7.5 " ,
4
4
"description" : " EXPERIMENTAL: JupyterLab Tabular Data Editor for CSV files" ,
5
5
"keywords" : [
6
6
" jupyter" ,
Original file line number Diff line number Diff line change @@ -82,8 +82,8 @@ export class BoundedDrag extends Drag {
82
82
if ( this . _boundingRegion || this . _initializing ) {
83
83
const { left, top } = this . bound ( clientX , clientY ) ;
84
84
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` ;
87
87
this . _initializing = false ;
88
88
}
89
89
}
You can’t perform that action at this time.
0 commit comments