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

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


Author: c9s
Date: Wed Dec  2 13:57:44 2009
New Revision: 7698

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

Log:
semicolons fixs.., 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:57:44 2009
@@ -346,7 +346,7 @@
             this.s_a = jQuery.extend({}, Todo.eval_ajax_get('/=/action/'+this.actionClass+'.js'));
         }
 
-        return this.s_a
+        return this.s_a;
     },
     argument_names: function() {
         return this._action_spec().keys();
@@ -577,7 +577,7 @@
     getValue: function(element) {
         var $el = jQuery(Jifty.$(element));
         if ( $el.is(":checkbox, :radio") ) {
-            return $el.is(":checked") ? $el.val() : null
+            return $el.is(":checked") ? $el.val() : null;
         }
         return $el.val();
     },


More information about the Jifty-commit mailing list