Skip to content

Commit

Permalink
Merge pull request #59 from nebiolabs/develop
Browse files Browse the repository at this point in the history
Handle bug preventing the bottom table from being populated
  • Loading branch information
gorj-tessella authored Jan 13, 2020
2 parents ddc2485 + 58d7786 commit 51d30f2
Show file tree
Hide file tree
Showing 7 changed files with 580 additions and 472 deletions.
2 changes: 1 addition & 1 deletion dist/js/plate-map.js
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ var plateMapWidget = plateMapWidget || {};
this.bottomTableBody.empty();
this.bottomTableHead.empty();
this.bottomTableHead.append(row);
this.adjustFieldWidth(this.bottomRow);
this.adjustFieldWidth(row);
},
tileAttrText: function tileAttrText(tile, attr) {
var well = this.engine.derivative[tile.index];
Expand Down
2 changes: 1 addition & 1 deletion dist/js/plate-map.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/plate-map.min.js.map

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -186,3 +186,5 @@ gulp.task('serve.prod', gulp.series('build.prod', 'server.prod'));

gulp.task('default', gulp.series('serve.dev'));

gulp.task('build.all', gulp.series('build.dev', 'build.prod', 'build.dist'));

1,032 changes: 569 additions & 463 deletions package-lock.json

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "plate-map",
"version": "2.0.0",
"version": "2.0.1",
"description": "JavaScript Plate Layout is an open source tool developed collaboratively by [Chai Biotechnologies](www.chaibio.com) and [New England Biolabs](www.neb.com) for visualizing and editing the layout of scientific assay plates.",
"scripts": {
"build.dist": "gulp build.dist",
Expand All @@ -27,12 +27,12 @@
"clipboard": "^2.0.4",
"jquery": "^3.4.1",
"jquery-ui-dist": "^1.12.1",
"select2": "^4.0.10",
"select2": "^4.0.12",
"svgjs": "^2.6.2"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/core": "^7.8.0",
"@babel/preset-env": "^7.8.2",
"babel-polyfill": "^6.26.0",
"browser-sync": "^2.26.7",
"del": "^3.0.0",
Expand All @@ -41,7 +41,7 @@
"gulp-clean-css": "^4.2.0",
"gulp-concat": "^2.6.1",
"gulp-connect": "^5.7.0",
"gulp-inject": "^5.0.4",
"gulp-inject": "^5.0.5",
"gulp-rename": "^1.4.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify-es": "^1.0.4",
Expand Down
2 changes: 1 addition & 1 deletion src/js/bottom-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ var plateMapWidget = plateMapWidget || {};
this.bottomTableBody.empty();
this.bottomTableHead.empty();
this.bottomTableHead.append(row);
this.adjustFieldWidth(this.bottomRow);
this.adjustFieldWidth(row);
},

tileAttrText: function(tile, attr) {
Expand Down

0 comments on commit 51d30f2

Please sign in to comment.