Skip to content

Commit

Permalink
Change FTP icon to open folder icon
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Aug 20, 2015
1 parent 0f883ef commit 9fb615f
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
Expand Up @@ -79,7 +79,7 @@ return Backbone.View.extend({
});
if (this.app.ftp_upload_site) {
this.button_menu.addMenu({
icon : 'fa-code-fork',
icon : 'fa-folder-open-o',
title : 'Choose FTP file',
onclick : function() {
self._showFtp();
Expand Down
2 changes: 1 addition & 1 deletion client/galaxy/scripts/mvc/upload/default/default-row.js
Expand Up @@ -180,7 +180,7 @@ return Backbone.View.extend({

// file from ftp
if (file_mode == 'ftp') {
this.$('#mode').addClass('fa fa-code-fork');
this.$('#mode').addClass('fa fa-folder-open-o');
}
},

Expand Down
2 changes: 1 addition & 1 deletion client/galaxy/scripts/mvc/upload/default/default-view.js
Expand Up @@ -65,7 +65,7 @@ return Backbone.View.extend({

// create button section
this.btnLocal = new Ui.Button({ id: 'btn-local', title: 'Choose local file', onclick: function() { self.uploadbox.select(); }, icon: 'fa fa-laptop' });
this.btnFtp = new Ui.Button({ id: 'btn-ftp', title: 'Choose FTP file', onclick: function() { self._eventFtp(); }, icon: 'fa fa-code-fork' });
this.btnFtp = new Ui.Button({ id: 'btn-ftp', title: 'Choose FTP file', onclick: function() { self._eventFtp(); }, icon: 'fa fa-folder-open-o' });
this.btnCreate = new Ui.Button({ id: 'btn-new', title: 'Paste/Fetch data', onclick: function() { self._eventCreate(); }, icon: 'fa fa-pencil' });
this.btnStart = new Ui.Button({ id: 'btn-start', title: 'Start', onclick: function() { self._eventStart(); } });
this.btnStop = new Ui.Button({ id: 'btn-stop', title: 'Pause', onclick: function() { self._eventStop(); } });
Expand Down
2 changes: 1 addition & 1 deletion static/maps/mvc/upload/composite/composite-row.js.map

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

0 comments on commit 9fb615f

Please sign in to comment.