Skip to content

Commit

Permalink
Remove unused backbone field dialog wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Sep 9, 2023
1 parent e2abe3a commit 8198c03
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 60 deletions.
11 changes: 0 additions & 11 deletions client/src/components/Form/Elements/parameters.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
This class creates input elements. New input parameter types should be added to the types dictionary.
*/
import Backbone from "backbone";
import DataPicker from "mvc/ui/ui-data-picker";
import SelectFtp from "mvc/ui/ui-select-ftp";
import SelectLibrary from "mvc/ui/ui-select-library";

Expand All @@ -12,7 +11,6 @@ export default Backbone.View.extend({
types: {
library_data: "_fieldLibrary",
ftpfile: "_fieldFtp",
data_dialog: "_fieldDialog",
},

remove: function () {
Expand All @@ -32,15 +30,6 @@ export default Backbone.View.extend({
this.$el.append(this.field.$el);
},

/** Data dialog picker field */
_fieldDialog: function (input_def) {
return new DataPicker({
id: input_def.id,
multiple: input_def.multiple,
onchange: input_def.onchange,
});
},

/** Library dataset field */
_fieldLibrary: function (input_def) {
return new SelectLibrary.View({
Expand Down
49 changes: 0 additions & 49 deletions client/src/mvc/ui/ui-data-picker.js

This file was deleted.

0 comments on commit 8198c03

Please sign in to comment.