1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/f53c0039c2c0/ changeset: f53c0039c2c0 user: jgoecks date: 2013-02-15 18:44:08 summary: Use strict equality operators. affected #: 1 file diff -r 8484a745317e5402e987401c85359e8c7a513445 -r f53c0039c2c07979b54ce42d680aabbce3be1116 static/scripts/viz/visualization.js --- a/static/scripts/viz/visualization.js +++ b/static/scripts/viz/visualization.js @@ -236,8 +236,8 @@ ready_deferred = $.Deferred(), // If requesting raw data, query dataset state; if requesting (converted) data, // need to query converted datasets state. - query_type = (this.get('data_type') == 'raw_data' ? 'state' : - this.get('data_type') == 'data' ? 'converted_datasets_state' : "error" ), + query_type = (this.get('data_type') === 'raw_data' ? 'state' : + this.get('data_type') === 'data' ? 'converted_datasets_state' : "error" ), ss_deferred = new util_mod.ServerStateDeferred({ ajax_settings: { url: this.get('dataset').url(), @@ -575,7 +575,7 @@ */ get_chrom_region: function(chr_name) { var chrom_info = _.find(this.get_chroms_info(), function(chrom_info) { - return chrom_info.chrom == chr_name; + return chrom_info.chrom === chr_name; }); return new GenomeRegion({ chrom: chrom_info.chrom, 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.