Skip to content

Commit

Permalink
ends up being just a CSS fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandunn committed Oct 19, 2018
1 parent aa2bc6b commit dbeb07a
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions client/apollo/js/View/Track/AnnotTrack.js
Expand Up @@ -5915,8 +5915,7 @@ define([
var track = this;

var content = dojo.create("div", {className: "get_gff3"});
// var content = dojo.create("div", {className: "get_gff3", style:{ width:'1000px',color:'green'}});
var textArea = dojo.create("textarea", {className: "gff3_area", readonly: true,rows:37,cols:145}, content);
var textArea = dojo.create("textarea", {className: "gff3_area", readonly: true}, content);

var fetchGff3 = function () {
var features = '"features": [';
Expand Down Expand Up @@ -5967,8 +5966,7 @@ define([
};
fetchGff3(records);

// this.openDialog("GFF3", content);
this.openDialog("GFF3", content,'950px','550px');
this.openDialog("GFF3", content);
},

getSequence: function () {
Expand All @@ -5980,8 +5978,7 @@ define([
var track = this;

var content = dojo.create("div", {className: "get_sequence"});
var textArea = dojo.create("textarea", {className: "sequence_area", readonly: true,
rows:27,cols:145}, content);
var textArea = dojo.create("textarea", {className: "sequence_area", readonly: true}, content);
var form = dojo.create("form", {}, content);
var peptideButtonDiv = dojo.create("div", {className: "first_button_div"}, form);
var peptideButton = dojo.create("input", {
Expand Down Expand Up @@ -6132,8 +6129,7 @@ define([
dojo.connect(genomicWithFlankButtonLabel, "onclick", null, callback);

fetchSequence("peptide");
// this.openDialog("Sequence", content);
this.openDialog("Sequence", content,'950px','550px');
this.openDialog("Sequence", content);
},

searchSequence: function () {
Expand Down

0 comments on commit dbeb07a

Please sign in to comment.