From 1a0a76d1b74a503bb87474debbc0e4d58f9a8e3a Mon Sep 17 00:00:00 2001
From: Peter Rotich <peter@osticket.com>
Date: Mon, 3 Feb 2014 22:48:23 +0000
Subject: [PATCH] Make tabs generic for user system-wide

---
 scp/css/scp.css | 17 +++++++++++------
 scp/js/scp.js   | 12 ++++++++++++
 2 files changed, 23 insertions(+), 6 deletions(-)

diff --git a/scp/css/scp.css b/scp/css/scp.css
index d3eaceb66..b98d663c2 100644
--- a/scp/css/scp.css
+++ b/scp/css/scp.css
@@ -842,8 +842,8 @@ h2 .reload {
     padding:0 10px;
 }
 
-#response_options ul.tabs {
-    padding:4px 0 0 190px;
+ul.tabs {
+    padding:4px 0 0 20px;
     margin:0;
     text-align:center;
     height:29px;
@@ -851,14 +851,19 @@ h2 .reload {
     background:#eef3f8;
 }
 
-#response_options ul.tabs li {
+#response_options ul.tabs {
+    padding-left:190px;
+}
+
+
+ul.tabs li {
     margin:0;
     padding:0;
     display:inline;
     list-style:none;
 }
 
-#response_options ul.tabs li a {
+ul.tabs li a {
     width:130px;
     font-weight:bold;
     padding:5px;
@@ -882,7 +887,7 @@ h2 .reload {
     background-repeat:no-repeat;
 }
 
-#response_options ul.tabs li a.active {
+ul.tabs li a.active {
     height:18px;
     color:#184E81;
     background-color:#f9f9f9;
@@ -1256,7 +1261,7 @@ time {
     background:#f8f8f8;
     border:2px solid #2a67ac;
     display:none;
-    z-index:5;
+    z-index:2000;
     box-shadow: 0 5px 60px #001;
     border-radius: 5px;
     max-height: 72%;
diff --git a/scp/js/scp.js b/scp/js/scp.js
index 30458bcaa..944ca6a2e 100644
--- a/scp/js/scp.js
+++ b/scp/js/scp.js
@@ -548,6 +548,18 @@ $(document).ready(function(){
            });
        }
    });
+
+   //Tabs
+   $(document).on('click.tab', 'ul.tabs li a', function(e) {
+        e.preventDefault();
+        if ($('.tab_content'+$(this).attr('href')).length) {
+            $('ul.tabs li a').removeClass('active');
+            $(this).addClass('active');
+            $('.tab_content').hide();
+            $('.tab_content'+$(this).attr('href')).show();
+        }
+    });
+
 });
 
 // NOTE: getConfig should be global
-- 
GitLab