Fixed jquery.cuteform.js and added it to compress settings.
authorMarek Stępniowski <marek@stepniowski.com>
Fri, 15 Aug 2008 00:31:36 +0000 (02:31 +0200)
committerMarek Stępniowski <marek@stepniowski.com>
Fri, 15 Aug 2008 00:31:36 +0000 (02:31 +0200)
media/js/jquery.cuteform.js
settings.py

index 7993634..ee1a158 100644 (file)
@@ -1,13 +1,12 @@
 (function($) {
-    $.fn.cuteform = function() {
-        $('form.cuteform', this).each(function(index) {
+    $(document).ready(function() {
+        $('form.cuteform').each(function(index) {
             var formLabels = $('label', this)
             var maxWidth = 0;
-            
+    
             formLabels.each(function() {
-                maxWidth = max(maxWidth, this);
-            });
-            formLabels.width(maxWidth);
+                maxWidth = Math.max(maxWidth, $(this).width());
+            }).css({display: 'inline-block'}).width(maxWidth);
         });
-    };
-})(jQuery)
\ No newline at end of file
+    });
+})(jQuery);
\ No newline at end of file
index 83bd3c3..829eaf8 100644 (file)
@@ -97,7 +97,7 @@ COMPRESS_CSS = {
 COMPRESS_JS = {
     'all': {
         'source_filenames': ('js/jquery.js', 'js/jquery.autocolumn.js', 'js/jquery.autocomplete.js', 
-            'js/jquery.form.js', 'js/jquery.jqmodal.js', 'js/jquery.labelify.js', 'js/jquery.cuteform.js'),
+            'js/jquery.form.js', 'js/jquery.jqmodal.js', 'js/jquery.labelify.js', 'js/jquery.cuteform.js',),
         'output_filename': 'js/all.min.js',
     }
 }