From: Johannes Zellner Date: Tue, 1 Mar 2016 16:11:57 +0000 (+0100) Subject: Ensure tooltips are working X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=3e98fb0c71628d983acb3fc345465ed959f19070;p=perso%2FImmae%2FProjets%2FNodejs%2FSurfer.git Ensure tooltips are working --- 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(); + }); + }); }); }