2
0
mirror of https://github.com/ACSPRI/queXS synced 2024-04-02 12:12:16 +00:00

Added HEADER_EXPANDER_MANUAL config directive to allow for manual expanding/contracting (via clickable image) of the header area

Images from OpenIconLibrary: http://openiconlibrary.sourceforge.net/gallery2/?./Icons/actions
This commit is contained in:
azammitdcarf
2011-02-03 01:25:54 +00:00
parent 56272934f7
commit d0ccbdc372
8 changed files with 69 additions and 19 deletions

11
js/headerexpandauto.js Normal file
View File

@@ -0,0 +1,11 @@
//Apply to all items of class header
$(document).ready(function(){
$(".header").hover(
//function on mouse over
headerexpand,
//function on mouse out
headercontract
);
});