From be1d818a63732554b8e4d7116eb202d4ce1f0f56 Mon Sep 17 00:00:00 2001
From: "Eric J. Duran" <eric.duran7@gmail.com>
Date: Thu, 17 Oct 2013 16:15:22 -0400
Subject: [PATCH] Issue #2114599 by ericduran: Fixed Stop using $.browser.msie
 without checking for $.browser.

---
 js/panels.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/js/panels.js b/js/panels.js
index 3bc5807..ee7f25f 100644
--- a/js/panels.js
+++ b/js/panels.js
@@ -3,7 +3,7 @@
   Drupal.Panels = Drupal.Panels || {};
 
   Drupal.Panels.autoAttach = function() {
-    if ($.browser.msie) {
+    if ($.browser && $.browser.msie) {
       // If IE, attach a hover event so we can see our admin links.
       $("div.panel-pane").hover(
         function() {
-- 
1.8.3.4

