[Jifty-commit] r7694 - jifty/trunk/share/web/static/js

Jifty commits jifty-commit at lists.jifty.org
Wed Dec 2 13:23:00 EST 2009


Author: c9s
Date: Wed Dec  2 13:22:59 2009
New Revision: 7694

Modified:
   jifty/trunk/share/web/static/js/jifty.js

Log:
shouldnt break line before  round brackets , fix for ie

Modified: jifty/trunk/share/web/static/js/jifty.js
==============================================================================
--- jifty/trunk/share/web/static/js/jifty.js	(original)
+++ jifty/trunk/share/web/static/js/jifty.js	Wed Dec  2 13:22:59 2009
@@ -372,21 +372,21 @@
 
  render: function() {
         if (this.render_mode == 'read')
-            return this.render_wrapper
-                (this.render_preamble,
-                 this.render_label,
-                 this.render_value);
+            return this.render_wrapper(
+                        this.render_preamble,
+                        this.render_label,
+                        this.render_value);
         else
-            return this.render_wrapper
-            (this.render_preamble,
-             this.render_label,
-             this.render_widget,
-             this.render_autocomplete_div,
-             this.render_inline_javascript,
-             this.render_hints,
-             this.render_errors,
-             this.render_warnings,
-             this.render_canonicalization_notes);
+            return this.render_wrapper(
+                        this.render_preamble,
+                        this.render_label,
+                        this.render_widget,
+                        this.render_autocomplete_div,
+                        this.render_inline_javascript,
+                        this.render_hints,
+                        this.render_errors,
+                        this.render_warnings,
+                        this.render_canonicalization_notes);
     },
  render_wrapper: function () {
         var classes = ['form_field'];


More information about the Jifty-commit mailing list