From 06ae6091c49b45b1baffa2c85de0743992384ea3 Mon Sep 17 00:00:00 2001
From: Richard Burford <rich@freestylesystems.co.uk>
Date: Tue, 20 Nov 2012 23:52:47 +0000
Subject: [PATCH] Issue #1846214 by psynaptic: Fixed unintentional conditional
 compilation statement in IE.

---
 extlink_extra.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/extlink_extra.js b/extlink_extra.js
index 5f2a396..cf4bf91 100644
--- a/extlink_extra.js
+++ b/extlink_extra.js
@@ -17,7 +17,7 @@ Drupal.settings.extlink_extra.colorboxSettings = Drupal.settings.extlink_extra.c
 Drupal.behaviors.extlink_extra = {
   attach: function(context){
     //Unbind extlink's click handler and add our own
-    //@todo: extlink.js only adds the 'ext' class to links that do not contain images!  We need to find another way to intercept those links...
+    // @todo: extlink.js only adds the 'ext' class to links that do not contain images!  We need to find another way to intercept those links...
     jQuery('a.' + Drupal.settings.extlink.extClass).unbind('click').not('.ext-override, .extlink-extra-leaving a').click(function(e) {
       var external_url = jQuery(this).attr('href');
       var back_url = window.location.href;
@@ -120,4 +120,4 @@ function extlink_extra_timer() {
 
 function extlink_stop_timer() {
   clearInterval(extlink_int);
-}
\ No newline at end of file
+}
-- 
1.7.11.4

