Skip to content
Snippets Groups Projects
Commit 76031337 authored by Arseniy Terekhin's avatar Arseniy Terekhin
Browse files

Donation sidebar fix for ie

parent ed89fe5e
No related branches found
No related tags found
1 merge request!7IE fix, better looking menu
function set_sidebar_html(html) {
$("#sidebar").html(html);
}
function py3k_donate() {
......@@ -1,8 +4,6 @@
function py3k_donate() {
$.get("don1.html#", function (html) {
$("#sidebar").html(html);
});
$.get("don1.html", set_sidebar_html);
}
function stm_donate() {
......@@ -6,9 +7,7 @@
}
function stm_donate() {
$.get("don4.html#", function (html) {
$("#sidebar").html(html);
});
$.get("don4.html", set_sidebar_html);
}
function general_donate() {
......@@ -12,9 +11,7 @@
}
function general_donate() {
$.get("don2.html#", function (html) {
$("#sidebar").html(html);
});
$.get("don2.html", set_sidebar_html);
}
function numpy_donate() {
......@@ -18,8 +15,6 @@
}
function numpy_donate() {
$.get("don3.html#", function (html) {
$("#sidebar").html(html);
});
$.get("don3.html", set_sidebar_html);
}
......@@ -24,5 +19,3 @@
}
$(document).ready(function() {
stm_donate();
});
\ No newline at end of file
$(document).ready(stm_donate);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment