Index: text_resize.js
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/text_resize/text_resize.js,v
retrieving revision 1.1.2.8
diff -u -r1.1.2.8 text_resize.js
--- text_resize.js	31 May 2009 04:10:01 -0000	1.1.2.8
+++ text_resize.js	3 Jun 2009 11:49:26 -0000
@@ -81,9 +81,9 @@
         }
       }
       else if (this.id == 'text_resize_reset') {
-        $.cookie('text_resize', text_resize_minimum, { path: '/' });
-				if (text_resize_line_height_allow) { $.cookie('text_resize_line_height', text_resize_line_height_min, { path: '/' }); }
-        var reset_size_min = true;
+        $.cookie('text_resize', null, { path: '/' });
+				if (text_resize_line_height_allow) { $.cookie('text_resize_line_height', null, { path: '/' }); }
+        var reset_size_null = true;
       }
       // jQuery lets us set the font size value of the main text div
       if (allow_change == true) {
@@ -101,6 +101,11 @@
 				if (text_resize_line_height_allow) { element_to_resize.css('line-height', text_resize_line_height_max + 'px'); }
         return false;
       }
+      else if (reset_size_null == true) {
+        element_to_resize.css('font-size', null);
+        if (text_resize_line_height_allow) { element_to_resize.css('line-height', null); }
+        return false;
+      }
     });
   });
 }
\ No newline at end of file

