Skip to content

Commit

Permalink
Fix bug that breaks phylotree v0.x.x branch selection.
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenshank committed Aug 9, 2019
1 parent 02584ab commit d601f1b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "alignment.js",
"version": "0.1.0",
"version": "0.1.1",
"main": "lib/alignment.js",
"license": "MIT",
"dependencies": {
Expand Down
5 changes: 3 additions & 2 deletions src/library.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,12 @@ import fastaParser from "./helpers/fasta";
import computeLabelWidth from "./helpers/computeLabelWidth";
import ScrollBroadcaster from "./helpers/ScrollBroadcaster";
import * as colors from "./helpers/colors";
import PreventDefaultPatch from "./prevent_default_patch";
//import PreventDefaultPatch from "./prevent_default_patch";

require("./app/styles.scss");

PreventDefaultPatch(document);
// Conflicts with phylotree branch selection
//PreventDefaultPatch(document);

export default Alignment;
export {
Expand Down

0 comments on commit d601f1b

Please sign in to comment.