mirror of
https://github.com/ACSPRI/queXS
synced 2024-04-02 12:12:16 +00:00
Added contactdetails tab (like respondent information) and CONTACT_DETAILS_TAB config directive to display it
Added ability to expand/contract the header when not in use with HEADER_EXPANDER config directive and jQuery javascript code
This commit is contained in:
21
js/headerexpand.js
Normal file
21
js/headerexpand.js
Normal file
@@ -0,0 +1,21 @@
|
||||
//Apply to all items of class header
|
||||
$(document).ready(function(){
|
||||
$(".header").hover(
|
||||
//function on mouse over
|
||||
function(){
|
||||
$(".header").css("height","30%");
|
||||
$(".content").css("height","70%");
|
||||
$(".content").css("top","30%");
|
||||
$(".box:not(.important)").css("display","inline");
|
||||
},
|
||||
|
||||
//function on mouse out
|
||||
function(){
|
||||
$(".header").css("height","5%");
|
||||
$(".content").css("height","95%");
|
||||
$(".content").css("top","5%");
|
||||
$(".box:not(.important)").css("display","none");
|
||||
}
|
||||
);
|
||||
|
||||
});
|
||||
Reference in New Issue
Block a user