mirror of
https://github.com/ACSPRI/queXS
synced 2024-04-02 12:12:16 +00:00
Images from OpenIconLibrary: http://openiconlibrary.sourceforge.net/gallery2/?./Icons/actions
17 lines
362 B
JavaScript
17 lines
362 B
JavaScript
function headerexpand()
|
|
{
|
|
$(".header").css("height","30%");
|
|
$(".content").css("height","70%");
|
|
$(".content").css("top","30%");
|
|
$(".box:not(.important)").css("display","");
|
|
}
|
|
|
|
function headercontract()
|
|
{
|
|
$(".header").css("height","5%");
|
|
$(".content").css("height","95%");
|
|
$(".content").css("top","5%");
|
|
$(".box:not(.important)").css("display","none");
|
|
|
|
}
|