Template:Footer/Links/Default: Difference between revisions
Jump to navigation
Jump to search
Content deleted Content added
No edit summary |
simplify links to use wikitext |
||
(14 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
⚫ | |||
<html> |
|||
⚫ | |||
<style type="text/css"> |
|||
⚫ | |||
.form-info-links { |
|||
⚫ | |||
list-style: none !important; |
|||
⚫ | |||
margin-left: 0 !important; |
|||
} |
|||
#monthly-link { |
|||
display: none; |
|||
} |
|||
#onetime-link { |
|||
display: none; |
|||
} |
|||
</style> |
|||
⚫ | |||
⚫ | |||
<li><a id="monthly-link" href="https://donate.wikimedia.org/wiki/Special:FundraiserLandingPage?form-countryspecific=Form-countryspecific-monthly&country=</html>{{{country}}}<html>&language=</html>{{int:lang}}<html>"></html>{{int:donate_interface-monthly-donation}}<html></a></li> |
|||
<li><a id="onetime-link" href="https://donate.wikimedia.org/wiki/Special:FundraiserLandingPage?form-countryspecific=Form-countryspecific-default&country=</html>{{{country}}}<html>&language=</html>{{int:lang}}<html>"></html>{{int:Donate interface-onetime}}<html></a></li> |
|||
⚫ | |||
⚫ | |||
<li><a id="tax-link" target="_blank" href="https://wikimediafoundation.org/wiki/Special:LandingCheck?landing_page=Tax_Deductibility&basic=true&country=</html>{{{country}}}<html>&language=</html>{{int:lang}}<html>"></html>{{int:donate_interface-taxded-link-us}}<html></a></li> |
|||
⚫ | |||
<script type="text/javascript"> |
|||
// This piece of script is add to preserve the layout of the page when the user is sent to monthly donation page |
|||
// parseParams is defined in MediaWiki:Common.js |
|||
$(document).ready(function() { |
|||
var baseURL = 'https://donate.wikimedia.org/wiki/Special:FundraiserLandingPage?'; |
|||
var paramsOut = parseParams(window.location.href); // create an object with the current querystring parameters |
|||
if (showOnetimeLink) { |
|||
// We're on a monthly page, fix up the onetime link and show that instead |
|||
paramsOut['form-countryspecific'] = 'Form-countryspecific-control'; |
|||
document.getElementById('onetime-link').href = baseURL + $.param(paramsOut); |
|||
$('#onetime-link').show(); |
|||
} else if (showMonthlyLink) { |
|||
// We're not on a monthly page. So show a correct link to one. |
|||
paramsOut['form-countryspecific'] = 'Form-countryspecific-monthly'; |
|||
document.getElementById('monthly-link').href = baseURL + $.param(paramsOut); |
|||
$('#monthly-link').show(); |
|||
} |
|||
}); |
|||
</script> |
|||
</html> |