# This patch file was generated by NetBeans IDE
# This patch can be applied using context Tools: Apply Diff Patch action on respective folder.
# It uses platform neutral UTF-8 encoding.
# Above lines and this line are ignored by the patching process.
Index: extlink/extlink.js
--- extlink/extlink.js Base (1.4)
+++ extlink/extlink.js Locally Modified (Based On 1.4)
@@ -22,7 +22,7 @@
     // to ftp://, javascript:, etc. other kinds of links.
     // When operating on the 'this' variable, the host has been appended to
     // all links by the browser, even local ones.
-    // In jQuery 1.1 and higher, we'd us a filter method here, but it is not
+    // In jQuery 1.1 and higher, we'd use a filter method here, but it is not
     // available in jQuery 1.0 (Drupal 5 default).
     var external_links = new Array();
     var mailto_links = new Array();
@@ -46,22 +46,12 @@
 
     if (Drupal.settings.extlink.extClass) {
       // Apply the "ext" class to all links not containing images.
-      if (parseFloat($().jquery) < 1.2) {
-        $(external_links).not('[img]').addClass(Drupal.settings.extlink.extClass);
-      }
-      else {
-        $(external_links).not($(external_links).find('img').parents('a')).addClass(Drupal.settings.extlink.extClass);
-      }
+      $(external_links).not($(external_links).find('img').parents('a')).addClass(Drupal.settings.extlink.extClass);
     }
 
     if (Drupal.settings.extlink.mailtoClass) {
       // Apply the "mailto" class to all mailto links not containing images.
-      if (parseFloat($().jquery) < 1.2) {
-        $(mailto_links).not('[img]').addClass(Drupal.settings.extlink.mailtoClass);
-      }
-      else {
-        $(mailto_links).not($(mailto_links).find('img').parents('a')).addClass(Drupal.settings.extlink.mailtoClass);
-      }
+      $(mailto_links).not($(mailto_links).find('img').parents('a')).addClass(Drupal.settings.extlink.mailtoClass);
     }
 
     if (Drupal.settings.extlink.extTarget) {
