芝麻web文件管理V1.00
编辑当前文件:/home/krishnamexports/public_html/panel/global_assets/js/demo_pages/login.js
/* ------------------------------------------------------------------------------ * * # Login pages * * Demo JS code for a set of login and registration pages * * ---------------------------------------------------------------------------- */ // Setup module // ------------------------------ var LoginRegistration = function () { // // Setup module components // // Uniform var _componentUniform = function() { if (!$().uniform) { console.warn('Warning - uniform.min.js is not loaded.'); return; } // Initialize $('.form-input-styled').uniform(); }; // // Return objects assigned to module // return { initComponents: function() { _componentUniform(); } } }(); // Initialize module // ------------------------------ document.addEventListener('DOMContentLoaded', function() { LoginRegistration.initComponents(); });