summaryrefslogtreecommitdiff
path: root/media/js/pgeucontrols.js
blob: b77e7d8b145e79d2f3ed5aef7be0c443758f3643 (plain)
1
2
3
4
5
6
$(function() {
    $('button.pgeu-datetime-set-button').on('click', function(e) {
	d = (new Date()).toISOString();
	$($('.pgeu-datetime-set-button')[0]).parent().parent().find('input').val(d.substring(0,10) + ' ' + d.substring(11,16));
    });
});