fnp
/
wolnelektury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
7993634f88795ff14103a8b5775a6b8a33722382
[wolnelektury.git]
/
media
/
js
/
jquery.cuteform.js
1
(function($) {
2
$.fn.cuteform = function() {
3
$('form.cuteform', this).each(function(index) {
4
var formLabels = $('label', this)
5
var maxWidth = 0;
6
7
formLabels.each(function() {
8
maxWidth = max(maxWidth, this);
9
});
10
formLabels.width(maxWidth);
11
});
12
};
13
})(jQuery)