]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/frio/js/theme.js
We now have a global page for all global entries from the network.
[friendica.git] / view / theme / frio / js / theme.js
index 819a7c75c3e26fa6f4c697bc1686e4116fadf19e..aa6db99c15daf250bc66dfd7d3b33ebbecdf880f 100644 (file)
@@ -206,6 +206,19 @@ $(document).ready(function(){
                $("#topbar-second > .container > #tabmenu").append(newText);
        }
 
+       if( $(".global-content-wrapper").length) {
+               // get the heading element
+               var heading = $(".global-content-wrapper > h3").first();
+               // get the text of the heading
+               var headingContent = heading.text();
+               // create a new element with the content of the heading
+               var newText = '<h4 class="heading">'+headingContent+'</h4>';
+               // remove the old heading element
+               heading.remove(),
+               // put the new element to the second nav bar
+               $("#topbar-second > .container > #tabmenu").append(newText);
+       }
+
        // Dropdown menus with the class "dropdown-head" will display the active tab
        // as button text
        $("body").on('click', '.dropdown-head .dropdown-menu li a, .dropdown-head .dropdown-menu li button', function(){