Merge remote-tracking branch 'origin/master'

This commit is contained in:
Weblate 2013-07-30 15:04:22 +02:00
commit f23b761a9b

View File

@ -186,16 +186,16 @@ function ajaxValidate(parent, id, values)
//
$(function () {
$('.userprefs-allow').click(function (e) {
if (this != e.target) {
return;
}
var el = $(this).find('input');
if (el.prop('disabled')) {
return;
}
el.prop('checked', !el.prop('checked'));
});
$('.userprefs-allow').click(function (e) {
if (this != e.target) {
return;
}
var el = $(this).find('input');
if (el.prop('disabled')) {
return;
}
el.prop('checked', !el.prop('checked'));
});
});
//