fnp
/
wolnelektury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Updated polish translations.
[wolnelektury.git]
/
media
/
js
/
jquery.cuteform.js
1
(function($) {
2
$(document).ready(function() {
3
$('form.cuteform').each(function(index) {
4
var formLabels = $('label', this)
5
var maxWidth = 0;
6
7
formLabels.each(function() {
8
maxWidth = Math.max(maxWidth, $(this).width());
9
}).css({display: 'inline-block'}).width(maxWidth);
10
});
11
});
12
})(jQuery);