From 9e3e0bef8b38f51bc7e4ee3740492067b5ddb268 Mon Sep 17 00:00:00 2001
From: Jared Hancock <jared@osticket.com>
Date: Fri, 7 Aug 2015 22:02:29 -0500
Subject: [PATCH] squashme: Drop alert() from autofocus thingy

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

diff --git a/scp/js/scp.js b/scp/js/scp.js
index ca9639428..7d2bc0190 100644
--- a/scp/js/scp.js
+++ b/scp/js/scp.js
@@ -466,7 +466,7 @@ var scp_prep = function() {
 
   $('.attached.input input[autofocus]').parent().addClass('focus')
   $('.attached.input input')
-    .on('focus', function() { alert('hi'); $(this).parent().addClass('focus'); })
+    .on('focus', function() { $(this).parent().addClass('focus'); })
     .on('blur', function() { $(this).parent().removeClass('focus'); })
 };
 
-- 
GitLab