aboutsummaryrefslogtreecommitdiff
path: root/ihatemoney/static/js/ihatemoney.js
blob: c240dc1a8998122f0ccf9e0d2756d8bd4c823805 (plain)
1
2
3
4
5
6
7
 // Utility to select all or none of the checkboxes in the add_bill form.
function selectCheckboxes(value){
  var els = document.getElementsByName('payed_for');
  for(var i = 0; i < els.length; i++){
    els[i].checked = value;
  }
}