Index: jquery_countdown.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/jquery_countdown/Attic/jquery_countdown.module,v
retrieving revision 1.1.2.9.2.1
diff -u -r1.1.2.9.2.1 jquery_countdown.module
--- jquery_countdown.module	28 Nov 2009 20:00:40 -0000	1.1.2.9.2.1
+++ jquery_countdown.module	29 Nov 2009 03:32:53 -0000
@@ -68,22 +68,8 @@
     // Add the stylesheet and the plugin depending on if we wanted the compressed one of not.
     drupal_add_css(drupal_get_path('module', 'jquery_countdown') .'/jquery_countdown/jquery.countdown.css');
 
-    // Add the minified version of JavaScript preprocessing is enabled.
-    if (variable_get('preprocess_js', 0)) {
-      drupal_add_js(drupal_get_path('module', 'jquery_countdown') .'/jquery_countdown/jquery.countdown.min.js');
-    }
-    else {
-      drupal_add_js(drupal_get_path('module', 'jquery_countdown') .'/jquery_countdown/jquery.countdown.js');
-    }
-
-    // Enable localization if available.
-    global $language;
-    if (isset($language->language)) {
-      $localization = drupal_get_path('module', 'jquery_countdown') .'/jquery_countdown/jquery.countdown-'. $language->language .'.js';
-      if (file_exists($localization)) {
-        drupal_add_js($localization);
-      }
-    }
+    // Add the minified version of the JavaScript.
+    drupal_add_js(drupal_get_path('module', 'jquery_countdown') .'/jquery_countdown/jquery.countdown.min.js');
 
     // Register the jQuery Countdown behaviour.
     drupal_add_js(drupal_get_path('module', 'jquery_countdown') .'/jquery_countdown.js');
