/* ----------------------------------------------------------------------------- GALLY-CUISE Template for Piwigo ------------------------------------------------------------------------------ file: js/theme.js file release: 1.0.0 theme release: 1.5.0 ------------------------------------------------------------------------------ author: cljosse at piwigo.org << May the Little SpaceFrog be with you >> ------------------------------------------------------------------------------ Specific JS for the theme see the release_notes.txt file for more informations ----------------------------------------------------------------------------- */ jQuery(document).ready( function () { jQuery('.size28x28#icon_gmaps').css({ height: '23px' }); jQuery('a.pwg-state-default').each(function (i) { obj = this; jQuery(obj).addClass("button").removeClass('pwg-state-default').removeClass('pwg-button'); html = jQuery(obj).html(); if (html.indexOf("url(") > 0) { id = this.id; jQuery(this).css({ backgroundPosition: "-588px +28px" }); htmls = html.split("url("); htmls = htmls[1].split(")"); html = ""; } else if (html.indexOf("map") > 0) { html = ""; jQuery(this).css({ backgroundPosition: "-588px -28px", position: 'relative' // bottom:'-10px',left:'-5px' }); } jQuery(obj).html(html); }); } );