Structure synchronised with Apache server on Zume. Styles improved. Store removed from app2.py
This commit is contained in:
@@ -2,5 +2,14 @@ var _loading = true;
|
||||
|
||||
function hookupPageHome() {
|
||||
hookupVideos();
|
||||
|
||||
let btnContact = $($("button.button-contact")[0]);
|
||||
initialiseEventHandler(btnContact, flagInitialised, function() {
|
||||
btnContact.on("click", function(event) {
|
||||
event.stopPropagation();
|
||||
goToPage(hashPageContact);
|
||||
});
|
||||
});
|
||||
|
||||
_loading = false;
|
||||
}
|
||||
|
||||
5
static/js/license.js
Normal file
5
static/js/license.js
Normal file
@@ -0,0 +1,5 @@
|
||||
var _loading = true;
|
||||
|
||||
function hookupPageHome() {
|
||||
_loading = false;
|
||||
}
|
||||
@@ -10,6 +10,14 @@ function hookupShared() {
|
||||
$(idOverlayHamburger).removeClass(flagCollapsed);
|
||||
$(idOverlayHamburger).addClass(flagExpanded);
|
||||
*/
|
||||
|
||||
let imgLogo = $($("img.header-logo")[0]);
|
||||
initialiseEventHandler(imgLogo, flagInitialised, function() {
|
||||
imgLogo.on("click", function(event) {
|
||||
event.stopPropagation();
|
||||
goToPage(hashPageHome);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function hookupVideos() {
|
||||
|
||||
Reference in New Issue
Block a user