Browse Source

This adds the current year to the title for volunteer hours.

devel
Jonathan Rosenbaum 7 years ago
parent
commit
f782cb90fc
  1. 5
      js/transaction.js

5
js/transaction.js

@ -703,8 +703,9 @@ $(function() {
obj.email + "\r\n" +
obj.phone + "\r\n" +
"volunteer hours for last 365 day: " + obj.volunteer_hours + "\r\n" +
"volunteer hours redeemed " + "\r\n" +
"volunteer hours remaining";
"volunteer hours for " + d.getFullYear() + ":\r\n" +
"volunteer hours redeemed: " + "\r\n" +
"volunteer hours remaining:";
$("#volunteer_hours").prop("title","").empty();

Loading…
Cancel
Save