diff --git a/frontend/src/utils/label-select/label-select.js b/frontend/src/utils/label-select/label-select.js deleted file mode 100644 index 3002a379d..000000000 --- a/frontend/src/utils/label-select/label-select.js +++ /dev/null @@ -1,32 +0,0 @@ -import { Utility } from '../../core/utility'; - -import './label-select.sass'; - - -@Utility({ - selector: '.uw-label-select', -}) -export class LabelSelect { - - _element; - _app; - - constructor(element, app) { - if (!element) { - throw new Error('LabelSelect utility cannot be setup without an element!'); - } - - if (!app) { - throw new Error('LabelSelect utility cannot be setup without an app!'); - } - - this._element = element; - this._app = app; - } - - // TODO cleanUp event manager etc. - destroy() { - console.log('TODO LabelSelect destroy'); - } - -} diff --git a/frontend/src/utils/label-select/label-select.sass b/frontend/src/utils/label-select/label-select.sass deleted file mode 100644 index e69de29bb..000000000 diff --git a/frontend/src/utils/utils.js b/frontend/src/utils/utils.js index 86c2d7e05..8727b1844 100644 --- a/frontend/src/utils/utils.js +++ b/frontend/src/utils/utils.js @@ -15,7 +15,6 @@ import { PageActionsUtils } from './pageactions/pageactions'; import { HideColumns } from './hide-columns/hide-columns'; import { ExamCorrect } from './exam-correct/exam-correct'; import { SortTable } from './sort-table/sort-table'; -import { LabelSelect } from './label-select/label-select'; export const Utils = [ Alerts, @@ -36,5 +35,4 @@ export const Utils = [ HideColumns, ExamCorrect, SortTable, - LabelSelect, ];