From d6f164dc96576a93d5472a95878a79b8167b5898 Mon Sep 17 00:00:00 2001 From: "jose.lausuch" Date: Thu, 1 Sep 2016 10:44:01 +0200 Subject: Remove first prototype of the Pharos Dashboard The Dashboard implementation from Max is im progress and more advanced than the initial one. It doesn't make sense to maintain both of them. Change-Id: Iabea63a7e5b6e8d64cb72b8de2264c5c4484eae8 Signed-off-by: jose.lausuch --- tools/infra-dashboard/js/script.js | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 tools/infra-dashboard/js/script.js (limited to 'tools/infra-dashboard/js/script.js') diff --git a/tools/infra-dashboard/js/script.js b/tools/infra-dashboard/js/script.js deleted file mode 100644 index 07c832a2..00000000 --- a/tools/infra-dashboard/js/script.js +++ /dev/null @@ -1,27 +0,0 @@ -jQuery(document).ready(function () { - // If svg is not supported - if (!Modernizr.svg) { - jQuery('img[src$=".svg"]').each(function() { - jQuery(this).attr('src', jQuery(this).attr('src').replace('.svg', '.png')); - }); - } - // If media queries are not supported - if(!Modernizr.mq('only all')) { - jQuery('head').append(''); - jQuery("link#no-mq").attr("href", "/joomla/media/templates/highsoft_bootstrap/css/ie.css"); - } - // Sidebar click animation - jQuery('.nav-sidebar > li').click(function () { - if (!jQuery(this).hasClass("active")) { - jQuery('.nav-sidebar > li.active > div.active').removeClass('active'); - jQuery('.nav-sidebar > li.active > ul').slideUp("slow"); - jQuery('.nav-sidebar > li.active').removeClass('active'); - jQuery(this).addClass("active"); - jQuery('.nav-sidebar > li.active > ul').slideDown("slow"); - jQuery('.nav-sidebar > li.active > div').addClass('active'); - } - }); - jQuery("#sidebar-toggle").click(function (e) { - jQuery("#wrap").toggleClass("toggled"); - }); -}); \ No newline at end of file -- cgit 1.2.3-korg