diff options
Diffstat (limited to 'web_src/js/components/DiffFileList.vue')
-rw-r--r-- | web_src/js/components/DiffFileList.vue | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/web_src/js/components/DiffFileList.vue b/web_src/js/components/DiffFileList.vue index 32919156b8..86444f2b21 100644 --- a/web_src/js/components/DiffFileList.vue +++ b/web_src/js/components/DiffFileList.vue @@ -21,7 +21,6 @@ </template> <script> -import {initTooltip} from '../modules/tippy.js'; import {doLoadMoreFiles} from '../features/repo-diff.js'; const {pageData} = window.config; @@ -30,17 +29,6 @@ export default { data: () => { return pageData.diffFileInfo; }, - watch: { - fileListIsVisible(newValue) { - if (newValue === true) { - this.$nextTick(() => { - for (const el of this.$refs.root.querySelectorAll('.tooltip')) { - initTooltip(el); - } - }); - } - } - }, mounted() { document.getElementById('show-file-list-btn').addEventListener('click', this.toggleFileList); }, |