commit/galaxy-central: guerler: Enhance button for trackster visualization in data display viewer
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/4fd592dfc594/ Changeset: 4fd592dfc594 User: guerler Date: 2013-04-10 22:50:54 Summary: Enhance button for trackster visualization in data display viewer Affected #: 1 file diff -r 4ed9bc9bc0ed78969423e8acad5f5281ef903020 -r 4fd592dfc594b2d31c2252915290a4e74f8f62f7 static/scripts/mvc/data.js --- a/static/scripts/mvc/data.js +++ b/static/scripts/mvc/data.js @@ -112,7 +112,7 @@ initialize: function(options) { // load trackster button - (new TabularButtonTrackster(options)).render(); + (new TabularButtonTracksterView(options)).render(); }, render: function() @@ -226,13 +226,13 @@ }); // button for trackster visualization -var TabularButtonTrackster = Backbone.View.extend( +var TabularButtonTracksterView = Backbone.View.extend( { // gene region columns col: { chrom : null, start : null, - end : null, + end : null }, // url for trackster @@ -251,8 +251,7 @@ var metadata = options.model.attributes.metadata.attributes; if (typeof metadata.chromCol === "undefined" || typeof metadata.startCol === "undefined" || typeof metadata.endCol === "undefined") console.log("TabularButtonTrackster : Metadata for column identification is missing."); - else - { + else { // read in columns this.col.chrom = metadata.chromCol - 1; this.col.start = metadata.startCol - 1; @@ -260,7 +259,7 @@ } // check - if(this.col.chrom == null) + if(this.col.chrom) return; // get dataset id @@ -291,7 +290,7 @@ btn_viz_show: function (e) { // check - if(this.col.chrom == null) + if(this.col.chrom) return; // get selected data line @@ -301,7 +300,7 @@ var chrom = row.children().eq(this.col.chrom).html(); var start = row.children().eq(this.col.start).html(); var end = row.children().eq(this.col.end).html(); - if (chrom != "" && start != "" && end != "") + if (chrom !== "" && start !== "" && end !== "") { // get target gene region var btn_viz_pars = { @@ -325,21 +324,12 @@ }, // hide button - btn_viz_hide: function (e) + btn_viz_hide: function () { // hide button from screen $('#btn_viz').hide(); }, - - // create action - create_trackster_action_new : function (vis_url, dataset_params, dbkey) - { - return function () { - window.parent.location.href = vis_url + "/trackster?" + $.param(dataset_params); - } - }, - // create action create_trackster_action : function (vis_url, dataset_params, dbkey) { return function() { Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org