Server IP : 162.241.126.129 / Your IP : 18.222.184.207 Web Server : Apache System : Linux 162-241-126-129.cprapid.com 4.18.0-477.27.2.el8_8.x86_64 #1 SMP Fri Sep 29 08:21:01 EDT 2023 x86_64 User : rvway5nu4 ( 1018) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/rvway5nu4/public_html/admin/js/ |
Upload File : |
$(document).ready(function () { // ------------------------------------------------------- // // Custom Scrollbar // ------------------------------------------------------ // if ($(window).outerWidth() > 992) { $("nav.side-navbar").mCustomScrollbar({ scrollInertia: 200 }); } // Main Template Color var brandPrimary = '#33b35a'; // ------------------------------------------------------- // // Side Navbar Functionality // ------------------------------------------------------ // $('#toggle-btn').on('click', function (e) { e.preventDefault(); if ($(window).outerWidth() > 1194) { $('nav.side-navbar').toggleClass('shrink'); $('.page').toggleClass('active'); } else { $('nav.side-navbar').toggleClass('show-sm'); $('.page').toggleClass('active-sm'); } }); // ------------------------------------------------------- // // Tooltips init // ------------------------------------------------------ // $('[data-toggle="tooltip"]').tooltip() // ------------------------------------------------------- // // Universal Form Validation // ------------------------------------------------------ // $('.form-validate').each(function() { $(this).validate({ errorElement: "div", errorClass: 'is-invalid', validClass: 'is-valid', ignore: ':hidden:not(.summernote),.note-editable.card-block', errorPlacement: function (error, element) { // Add the `invalid-feedback` class to the error element error.addClass("invalid-feedback"); //console.log(element); if (element.prop("type") === "checkbox") { error.insertAfter(element.siblings("label")); } else { error.insertAfter(element); } } }); }); // ------------------------------------------------------- // // Material Inputs // ------------------------------------------------------ // var materialInputs = $('input.input-material'); // activate labels for prefilled values materialInputs.filter(function () { return $(this).val() !== ""; }).siblings('.label-material').addClass('active'); // move label on focus materialInputs.on('focus', function () { $(this).siblings('.label-material').addClass('active'); }); // remove/keep label on blur materialInputs.on('blur', function () { $(this).siblings('.label-material').removeClass('active'); if ($(this).val() !== '') { $(this).siblings('.label-material').addClass('active'); } else { $(this).siblings('.label-material').removeClass('active'); } }); // ------------------------------------------------------- // // Jquery Progress Circle // ------------------------------------------------------ // var progress_circle = $("#progress-circle").gmpc({ color: brandPrimary, line_width: 5, percent: 80 }); progress_circle.gmpc('animate', 80, 3000); // ------------------------------------------------------- // // External links to new window // ------------------------------------------------------ // $('.external').on('click', function (e) { e.preventDefault(); window.open($(this).attr("href")); }); // ------------------------------------------------------ // // For demo purposes, can be deleted // ------------------------------------------------------ // var stylesheet = $('link#theme-stylesheet'); $("<link id='new-stylesheet' rel='stylesheet'>").insertAfter(stylesheet); var alternateColour = $('link#new-stylesheet'); if ($.cookie("theme_csspath")) { alternateColour.attr("href", $.cookie("theme_csspath")); } $("#colour").change(function () { if ($(this).val() !== '') { var theme_csspath = 'css/style.' + $(this).val() + '.css'; alternateColour.attr("href", theme_csspath); $.cookie("theme_csspath", theme_csspath, { expires: 365, path: document.URL.substr(0, document.URL.lastIndexOf('/')) }); } return false; }); });