mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2025-06-16 11:25:22 +02:00
Donation goal banner
This commit is contained in:
@ -81,7 +81,7 @@ img.center-align {
|
||||
padding-bottom: 0px;
|
||||
}
|
||||
|
||||
#dblbanner {
|
||||
#dblbanner, #donbanner {
|
||||
background-color: darkblue;
|
||||
text-align: center;
|
||||
font-size: 12pt;
|
||||
@ -90,11 +90,11 @@ img.center-align {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#dblbanner a {
|
||||
#dblbanner a, #donbanner a {
|
||||
transition: font-size 0.5s;
|
||||
color: lightskyblue;
|
||||
}
|
||||
|
||||
#dblbanner a:hover {
|
||||
#dblbanner a:hover, #donbanner a:hover {
|
||||
font-size: 14pt;
|
||||
}
|
26
webapp/titanembeds/static/js/admin_application_settings.js
Normal file
26
webapp/titanembeds/static/js/admin_application_settings.js
Normal file
@ -0,0 +1,26 @@
|
||||
function postForm(donation_goal_progress, donation_goal_total, donation_goal_end) {
|
||||
var funct = $.ajax({
|
||||
dataType: "json",
|
||||
method: "POST",
|
||||
data: {
|
||||
"donation_goal_progress": donation_goal_progress,
|
||||
"donation_goal_total": donation_goal_total,
|
||||
"donation_goal_end": donation_goal_end
|
||||
}
|
||||
});
|
||||
return funct.promise();
|
||||
}
|
||||
|
||||
$("#submit").click(function () {
|
||||
Materialize.toast("Saving changes...", 2000);
|
||||
let donation_goal_progress = $("#donation_goal_progress").val();
|
||||
let donation_goal_total = $("#donation_goal_total").val();
|
||||
let donation_goal_end = $("#donation_goal_end").val();
|
||||
let req = postForm(donation_goal_progress, donation_goal_total, donation_goal_end);
|
||||
req.done(function () {
|
||||
Materialize.toast("All changes saved!", 2000);
|
||||
});
|
||||
req.fail(function () {
|
||||
Materialize.toast("There is an error saving changes.", 2000);
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user