make the header work on all pages

This commit is contained in:
Jakob Ketterl
2020-05-10 16:23:05 +02:00
parent 508ea2cf96
commit 813474b5d6
10 changed files with 11 additions and 20 deletions

View File

@ -62,4 +62,8 @@ $.fn.header = function() {
this.data('header', new Header(this));
}
return this.data('header');
};
};
$(function(){
$('#webrx-top-container').header();
});