X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fsrc%2Fpybind%2Fmgr%2Fdashboard%2Fstatic%2FAdminLTE-2.3.7%2Fdocumentation%2Fdocs.js;fp=src%2Fceph%2Fsrc%2Fpybind%2Fmgr%2Fdashboard%2Fstatic%2FAdminLTE-2.3.7%2Fdocumentation%2Fdocs.js;h=0000000000000000000000000000000000000000;hb=7da45d65be36d36b880cc55c5036e96c24b53f00;hp=c89ae54f7abd2ff67b1daf871178a549e652924a;hpb=691462d09d0987b47e112d6ee8740375df3c51b2;p=stor4nfv.git diff --git a/src/ceph/src/pybind/mgr/dashboard/static/AdminLTE-2.3.7/documentation/docs.js b/src/ceph/src/pybind/mgr/dashboard/static/AdminLTE-2.3.7/documentation/docs.js deleted file mode 100644 index c89ae54..0000000 --- a/src/ceph/src/pybind/mgr/dashboard/static/AdminLTE-2.3.7/documentation/docs.js +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Documentation JS script - */ -$(function () { - var slideToTop = $("
"); - slideToTop.html(''); - slideToTop.css({ - position: 'fixed', - bottom: '20px', - right: '25px', - width: '40px', - height: '40px', - color: '#eee', - 'font-size': '', - 'line-height': '40px', - 'text-align': 'center', - 'background-color': '#222d32', - cursor: 'pointer', - 'border-radius': '5px', - 'z-index': '99999', - opacity: '.7', - 'display': 'none' - }); - slideToTop.on('mouseenter', function () { - $(this).css('opacity', '1'); - }); - slideToTop.on('mouseout', function () { - $(this).css('opacity', '.7'); - }); - $('.wrapper').append(slideToTop); - $(window).scroll(function () { - if ($(window).scrollTop() >= 150) { - if (!$(slideToTop).is(':visible')) { - $(slideToTop).fadeIn(500); - } - } else { - $(slideToTop).fadeOut(500); - } - }); - $(slideToTop).click(function () { - $("body").animate({ - scrollTop: 0 - }, 500); - }); - $(".sidebar-menu li:not(.treeview) a").click(function () { - var $this = $(this); - var target = $this.attr("href"); - if (typeof target === 'string') { - $("body").animate({ - scrollTop: ($(target).offset().top) + "px" - }, 500); - } - }); - //Skin switcher - var current_skin = "skin-blue"; - $('#layout-skins-list [data-skin]').click(function(e) { - e.preventDefault(); - var skinName = $(this).data('skin'); - $('body').removeClass(current_skin); - $('body').addClass(skinName); - current_skin = skinName; - }); -});