Skip to content

Commit

Permalink
Fix color to primary/blue
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Aug 8, 2015
1 parent 1f3ee5f commit 3fae233
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Expand Up @@ -39,7 +39,7 @@ return Backbone.View.extend({
this.setElement(this._template());

// create button section
this.btnStart = new Ui.Button({ title: 'Start', onclick: function() { self._eventStart(); }, cls: 'ui-button btn btn-success'});
this.btnStart = new Ui.Button({ title: 'Start', onclick: function() { self._eventStart(); }, cls: 'ui-button btn btn-primary'});
this.btnClose = new Ui.Button({ title: 'Close', onclick: function() { self.app.modal.hide(); } });

// append buttons to dom
Expand Down
2 changes: 1 addition & 1 deletion client/galaxy/scripts/mvc/upload/default/default-view.js
Expand Up @@ -69,7 +69,7 @@ return Backbone.View.extend({
this.btnLocal = new Ui.Button({ title: 'Choose local file', onclick: function() { self.uploadbox.select(); } });
this.btnFtp = new Ui.Button({ title: 'Choose FTP file', onclick: function() { self._eventFtp(); } });
this.btnCreate = new Ui.Button({ title: 'Paste/Fetch data', onclick: function() { self._eventCreate(); } });
this.btnStart = new Ui.Button({ title: 'Start', onclick: function() { self._eventStart(); }, cls: 'ui-button btn btn-success' });
this.btnStart = new Ui.Button({ title: 'Start', onclick: function() { self._eventStart(); }, cls: 'ui-button btn btn-primary' });
this.btnStop = new Ui.Button({ title: 'Pause', onclick: function() { self._eventStop(); } });
this.btnReset = new Ui.Button({ title: 'Reset', onclick: function() { self._eventReset(); } });
this.btnClose = new Ui.Button({ title: 'Close', onclick: function() { self.app.modal.hide(); } });
Expand Down
2 changes: 1 addition & 1 deletion static/scripts/mvc/upload/composite/composite-view.js

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

0 comments on commit 3fae233

Please sign in to comment.