aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/js/app.js
diff options
context:
space:
mode:
authorJohannes Zellner <johannes@nebulon.de>2016-03-01 17:11:57 +0100
committerJohannes Zellner <johannes@nebulon.de>2016-03-01 17:11:57 +0100
commit3e98fb0c71628d983acb3fc345465ed959f19070 (patch)
treea6f51ea99190d0af2a87debe009eece8cdf02475 /app/js/app.js
parent235212c45184916c76bf05508000d652fd84cd19 (diff)
downloadSurfer-3e98fb0c71628d983acb3fc345465ed959f19070.tar.gz
Surfer-3e98fb0c71628d983acb3fc345465ed959f19070.tar.zst
Surfer-3e98fb0c71628d983acb3fc345465ed959f19070.zip
Ensure tooltips are working
Diffstat (limited to 'app/js/app.js')
-rw-r--r--app/js/app.js6
1 files changed, 6 insertions, 0 deletions
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) {
63 app.entries = result.body.entries; 63 app.entries = result.body.entries;
64 app.path = filePath; 64 app.path = filePath;
65 app.pathParts = filePath.split('/').filter(function (e) { return !!e; }); 65 app.pathParts = filePath.split('/').filter(function (e) { return !!e; });
66
67 Vue.nextTick(function () {
68 $(function () {
69 $('[data-toggle="tooltip"]').tooltip();
70 });
71 });
66 }); 72 });
67} 73}
68 74