diff options
Diffstat (limited to 'app/js')
-rw-r--r-- | app/js/app.js | 6 |
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 | ||