summaryrefslogtreecommitdiffstats
path: root/extensions/vertical-workspaces/iconGrid.js
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/vertical-workspaces/iconGrid.js')
-rw-r--r--extensions/vertical-workspaces/iconGrid.js26
1 files changed, 0 insertions, 26 deletions
diff --git a/extensions/vertical-workspaces/iconGrid.js b/extensions/vertical-workspaces/iconGrid.js
deleted file mode 100644
index 2b93efd..0000000
--- a/extensions/vertical-workspaces/iconGrid.js
+++ /dev/null
@@ -1,26 +0,0 @@
-/**
- * Vertical Workspaces
- * iconGrid.js
- *
- * @author GdH <G-dH@github.com>
- * @copyright 2022 - 2023
- * @license GPL-3.0
- *
- */
-
-'use strict';
-
-// ------------------ IconGrid - override -------------------------------------------------------------------------
-
-// workaround - silence page -2 error on gnome 43 during cleaning appgrid
-
-var IconGrid = {
- getItemsAtPage: function(page) {
- if (page < 0 || page > this.nPages)
- return [];
- //throw new Error(`Page ${page} does not exist at IconGrid`);
-
- const layoutManager = this.layout_manager;
- return layoutManager.getItemsAtPage(page);
- }
-} \ No newline at end of file