blob: 9ffc8771ce08d5cd1b753d23008cf504589ab97c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// 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;
}
}
function localizeTime(utcTimestamp) {
return new Date(utcTimestamp).toLocaleString()
}
|