Commit 3e98fb0c by Johannes Zellner

Ensure tooltips are working

1 parent 235212c4
Showing with 6 additions and 0 deletions
...@@ -63,6 +63,12 @@ function loadDirectory(filePath) { ...@@ -63,6 +63,12 @@ function loadDirectory(filePath) {
app.entries = result.body.entries; app.entries = result.body.entries;
app.path = filePath; app.path = filePath;
app.pathParts = filePath.split('/').filter(function (e) { return !!e; }); app.pathParts = filePath.split('/').filter(function (e) { return !!e; });
Vue.nextTick(function () {
$(function () {
$('[data-toggle="tooltip"]').tooltip();
});
});
}); });
} }
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!