Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
squireless
/
assets
/
admin
/
global_assets
/
js
/
demo_pages
:
components_media.js
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
/* ------------------------------------------------------------------------------ * * # Media objects * * Demo JS code for components_media.html page * * ---------------------------------------------------------------------------- */ // Setup module // ------------------------------ var Media = function () { // // Setup module components // // Switchery var _componentSwitchery = function() { if (typeof Switchery == 'undefined') { console.warn('Warning - switchery.min.js is not loaded.'); return; } // Initialize var elems = Array.prototype.slice.call(document.querySelectorAll('.form-control-switchery')); elems.forEach(function(html) { var switchery = new Switchery(html); }); }; // 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() { _componentSwitchery(); _componentUniform(); } } }(); // Initialize module // ------------------------------ document.addEventListener('DOMContentLoaded', function() { Media.initComponents(); });