Fixed jquery.cuteform.js and added it to compress settings.
[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);