Skip to content

Commit

Permalink
Identify links in visualizations plugins descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Aug 31, 2016
1 parent 5cae6f7 commit 71fe20a
Show file tree
Hide file tree
Showing 8 changed files with 297 additions and 285 deletions.
513 changes: 262 additions & 251 deletions client/galaxy/scripts/utils/utils.js

Large diffs are not rendered by default.

@@ -1,5 +1,5 @@
/** This class renders the chart configuration form. */
define( [], function() {
define( [ 'utils/utils' ], function( Utils ) {
return Backbone.View.extend({
initialize: function( app, options ) {
var self = this;
Expand All @@ -15,7 +15,7 @@ define( [], function() {
render: function() {
this.$image.attr( 'src', remote_root + 'src/visualizations/' + this.app.split( this.chart.get( 'type' ) ) + '/logo.png' );
this.$title.html( this.chart.definition.title + ' (' + this.chart.definition.library + ')' );
this.$text.html( this.chart.definition.description || this.chart.definition.category );
this.$text.html( Utils.linkify( this.chart.definition.description || '' ) );
},
_template: function() {
return '<div class="charts-description">' +
Expand Down
2 changes: 1 addition & 1 deletion static/maps/utils/utils.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 13 additions & 12 deletions static/scripts/bundled/analysis.bundled.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion static/scripts/bundled/analysis.bundled.js.map

Large diffs are not rendered by default.

32 changes: 16 additions & 16 deletions static/scripts/bundled/libs.bundled.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion static/scripts/bundled/libs.bundled.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion static/scripts/utils/utils.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 71fe20a

Please sign in to comment.