Remove obsolete JavaScript function
authorMatthias Schmidt <gravatronics@live.com>
Sun, 21 Mar 2021 09:47:20 +0000 (10:47 +0100)
committerMatthias Schmidt <gravatronics@live.com>
Sun, 21 Mar 2021 09:47:20 +0000 (10:47 +0100)
ts/WoltLabSuite/Core/Controller/Media/List.ts
wcfsetup/install/files/js/WoltLabSuite/Core/Controller/Media/List.js

index 56b26e4790f5fda268a2a326d79f90106fa593d2..4ccd92e3c9b1a86ab47bc21ae6b888775aa5fb8a 100644 (file)
@@ -64,23 +64,6 @@ function addButtonEventListeners(): void {
   });
 }
 
-/**
- * Is triggered after media files have been deleted using the delete icon.
- */
-function deleteCallback(objectIds?: number[]): void {
-  const tableRowCount = _tableBody.getElementsByTagName("tr").length;
-  if (objectIds === undefined) {
-    if (!tableRowCount) {
-      window.location.reload();
-    }
-  } else if (objectIds.length === tableRowCount) {
-    // table is empty, reload page
-    window.location.reload();
-  } else {
-    Clipboard.reload();
-  }
-}
-
 /**
  * Is called when a media edit icon is clicked.
  */
index a032a41dd6429d68266af50f579734baee289298..48bfbfe5428d43620d12133a6f369f33adf72aa1 100644 (file)
@@ -6,7 +6,7 @@
  * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
  * @module  WoltLabSuite/Core/Controller/Media/List
  */
-define(["require", "exports", "tslib", "../../Media/List/Upload", "../../Media/Clipboard", "../../Event/Handler", "../../Media/Editor", "../../Dom/Change/Listener", "../../Controller/Clipboard"], function (require, exports, tslib_1, Upload_1, MediaClipboard, EventHandler, Editor_1, DomChangeListener, Clipboard) {
+define(["require", "exports", "tslib", "../../Media/List/Upload", "../../Media/Clipboard", "../../Event/Handler", "../../Media/Editor", "../../Dom/Change/Listener"], function (require, exports, tslib_1, Upload_1, MediaClipboard, EventHandler, Editor_1, DomChangeListener) {
     "use strict";
     Object.defineProperty(exports, "__esModule", { value: true });
     exports.init = void 0;
@@ -15,7 +15,6 @@ define(["require", "exports", "tslib", "../../Media/List/Upload", "../../Media/C
     EventHandler = tslib_1.__importStar(EventHandler);
     Editor_1 = tslib_1.__importDefault(Editor_1);
     DomChangeListener = tslib_1.__importStar(DomChangeListener);
-    Clipboard = tslib_1.__importStar(Clipboard);
     const _mediaEditor = new Editor_1.default({
         _editorSuccess: (media, oldCategoryId) => {
             if (media.categoryID != oldCategoryId) {
@@ -51,24 +50,6 @@ define(["require", "exports", "tslib", "../../Media/List/Upload", "../../Media/C
             button.addEventListener("click", (ev) => edit(ev));
         });
     }
-    /**
-     * Is triggered after media files have been deleted using the delete icon.
-     */
-    function deleteCallback(objectIds) {
-        const tableRowCount = _tableBody.getElementsByTagName("tr").length;
-        if (objectIds === undefined) {
-            if (!tableRowCount) {
-                window.location.reload();
-            }
-        }
-        else if (objectIds.length === tableRowCount) {
-            // table is empty, reload page
-            window.location.reload();
-        }
-        else {
-            Clipboard.reload();
-        }
-    }
     /**
      * Is called when a media edit icon is clicked.
      */