From 3e98fb0c71628d983acb3fc345465ed959f19070 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Tue, 1 Mar 2016 17:11:57 +0100 Subject: [PATCH] Ensure tooltips are working --- app/js/app.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/js/app.js b/app/js/app.js index 11581b6..0d6144e 100644 --- a/app/js/app.js +++ b/app/js/app.js @@ -63,6 +63,12 @@ function loadDirectory(filePath) { app.entries = result.body.entries; app.path = filePath; app.pathParts = filePath.split('/').filter(function (e) { return !!e; }); + + Vue.nextTick(function () { + $(function () { + $('[data-toggle="tooltip"]').tooltip(); + }); + }); }); } -- 2.41.0