Skip to content

Commit

Permalink
Remove unused table library from define/include
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Aug 11, 2016
1 parent 8eabf56 commit b6e5854
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 21 deletions.
6 changes: 3 additions & 3 deletions client/galaxy/scripts/mvc/form/form-repeat.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/** This class creates a ui component which enables the dynamic creation of portlets */
define( [ 'utils/utils', 'mvc/ui/ui-table', 'mvc/ui/ui-portlet', 'mvc/ui/ui-misc' ],
function( Utils, Table, Portlet, Ui ) {
define( [ 'utils/utils', 'mvc/ui/ui-portlet', 'mvc/ui/ui-misc' ],
function( Utils, Portlet, Ui ) {
var View = Backbone.View.extend({
initialize: function( options ) {
this.list = {};
Expand Down Expand Up @@ -85,7 +85,7 @@ function( Utils, Table, Portlet, Ui ) {
for ( var id in this.list ) {
var portlet = this.list[ id ];
portlet.title( ++index + ': ' + this.options.title );
portlet[ this.size() > this.options.min ? 'showOperation' : 'hideOperation' ]('button_delete');
portlet[ this.size() > this.options.min ? 'showOperation' : 'hideOperation' ]( 'button_delete' );
}
}
});
Expand Down
2 changes: 1 addition & 1 deletion static/maps/mvc/form/form-repeat.js.map

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

23 changes: 12 additions & 11 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.

6 changes: 3 additions & 3 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/mvc/form/form-repeat.js

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

0 comments on commit b6e5854

Please sign in to comment.