From 63c5934de22932e6a7209d6c87f5d08a694b03fc Mon Sep 17 00:00:00 2001 From: Zaphod Date: Fri, 2 Mar 2012 21:18:44 +0000 Subject: feature 2587: new theme elegant, first beta version git-svn-id: http://piwigo.org/svn/trunk@13464 68402e56-0260-453c-a942-63ccdbb3a9ee --- themes/elegant/scripts.js | 77 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 themes/elegant/scripts.js (limited to 'themes/elegant/scripts.js') diff --git a/themes/elegant/scripts.js b/themes/elegant/scripts.js new file mode 100644 index 000000000..e83dfd4f3 --- /dev/null +++ b/themes/elegant/scripts.js @@ -0,0 +1,77 @@ +jQuery("document").ready(function(jQuery){ + + var menubar=jQuery("#menubar"); + var content=jQuery("#content"); + + if ( (menubar.length == 1) && (content.length ==1)) { + menubar.after("
«
"); +/* if (!content.hasClass('content')) content.addClass('content');*/ + } + /*»*/ + + jQuery("#menuswitcher").click(function(){ + if (jQuery("#menubar").is(":hidden")) { + showMenu(0); + return false; + } else { + hideMenu(0); + return false; + } + }); + + // creates a variable with the contents of the cookie side-menu + var sidemenu = jQuery.cookie('side-menu'); + + // if cookie says the menu is hiding, keep it hidden! + if (sidemenu == 'hiding') { + hideMenu(0); + } else { + showMenu(0); + } + + +}); + +function hideMenu(delay) { + + var menubar=jQuery("#menubar"); + var menuswitcher=jQuery("#menuswitcher"); + var content=jQuery("#the_page > .content"); + var pcontent=jQuery("#content"); + + menubar.hide(delay); + menuswitcher.addClass("menuhidden").removeClass("menushown"); + menuswitcher.text("»"); + content.addClass("menuhidden").removeClass("menushown"); + pcontent.addClass("menuhidden").removeClass("menushown"); + jQuery.cookie('side-menu', 'hiding', {path: "/"}); + +} + +function showMenu(delay) { + + var menubar=jQuery("#menubar"); + var menuswitcher=jQuery("#menuswitcher"); + var content=jQuery("#the_page > .content"); + var pcontent=jQuery("#content"); + + menubar.show(delay); + menuswitcher.addClass("menushown").removeClass("menuhidden"); + menuswitcher.text("«"); + content.addClass("menushown").removeClass("menuhidden"); + pcontent.addClass("menushown").removeClass("menuhidden"); + jQuery.cookie('side-menu', 'showing', {path: "/"}); + +} + +/** + * Cookie plugin + * Copyright (c) 2006 Klaus Hartl (stilbuero.de) + * Dual licensed under the MIT and GPL licenses: + */ +jQuery.cookie=function(name,value,options){if(typeof value!='undefined'){options=options||{};if(value===null){value='';options=jQuery.extend({},options);options.expires=-1;} +var expires='';if(options.expires&&(typeof options.expires=='number'||options.expires.toUTCString)){var date;if(typeof options.expires=='number'){date=new Date();date.setTime(date.getTime()+(options.expires*24*60*60*1000));}else{date=options.expires;} +expires='; expires='+date.toUTCString();} +var path=options.path?'; path='+(options.path):'';var domain=options.domain?'; domain='+(options.domain):'';var secure=options.secure?'; secure':'';document.cookie=[name,'=',encodeURIComponent(value),expires,path,domain,secure].join('');}else{var cookieValue=null;if(document.cookie&&document.cookie!=''){var cookies=document.cookie.split(';');for(var i=0;i