We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d594404 commit a418b84Copy full SHA for a418b84
install/deb/filemanager/filegator/configuration.php
@@ -40,5 +40,19 @@
40
'add_to_body' => '',
41
];
42
43
+$dist_config['services']['Filegator\Services\View\ViewInterface']['config'] = [
44
+ 'add_to_head' => '',
45
+ 'add_to_body' => '
46
+<script>
47
+ var checkVueLoaded = setInterval(function() {
48
+ if (document.getElementsByClassName("navbar-item").length) {
49
+ clearInterval(checkVueLoaded);
50
+ var navProfile = document.getElementsByClassName("navbar-item profile")[0]; navProfile.replaceWith(navProfile.cloneNode(true))
51
+ document.getElementsByClassName("navbar-item logout")[0].text="Back to Hestia";
52
+ }
53
+ }, 200);
54
+</script>',
55
+];
56
+
57
58
return $dist_config;
0 commit comments