diff --git a/src/utils/ClickOutside.js b/src/utils/ClickOutside.js
deleted file mode 100644
index 83bb4bbc..00000000
--- a/src/utils/ClickOutside.js
+++ /dev/null
@@ -1,37 +0,0 @@
-/**
- * A simple Vue directive to trigger an event when the user
- * clicks anywhere other than the specified element.
- * Used to close context menu's popup menus and tips.
- */
-
-const instances = [];
-
-function onDocumentClick(e, el, fn) {
-  const { target } = e;
-  if (el !== target && !el.contains(target)) {
-    fn(e);
-  }
-}
-
-export default {
-  bind(element, binding) {
-    const el = element;
-    el.dataset.outsideClickIndex = instances.length;
-
-    const fn = binding.value;
-    const click = (e) => {
-      onDocumentClick(e, el, fn);
-    };
-
-    document.addEventListener('click', click);
-    document.addEventListener('touchstart', click);
-    instances.push(click);
-  },
-  unbind(el) {
-    if (!el.dataset) return;
-    const index = el.dataset.outsideClickIndex;
-    const handler = instances[index];
-    document.removeEventListener('click', handler);
-    instances.splice(index, 1);
-  },
-};