/* globals ripples */ $(function (){ ripples.init(".btn:not(.btn-link), .navbar a, .nav-tabs a, .withripple"); // Add fake-checkbox to material checkboxes $(".checkbox label input").after(""); // Add fake-radio to material radios $(".radio label input").after(""); // Add elements for material inputs $("input.form-control, textarea.form-control, select.form-control").each( function() { $(this).wrap("
"); $(this).after(""); if ($(this).hasClass("floating-label")) { var placeholder = $(this).attr("placeholder"); $(this).attr("placeholder", null).removeClass("floating-label"); $(this).after("
" + placeholder + "
"); } if ($(this).val() === "") { $(this).addClass("empty"); } }); // Material inputs engine (ripple effect) $(document).on("click", ".checkbox label, .radio label", function() { var $ripple = $(this).find(".ripple"), timestamp = "t" + new Date().getTime(); $ripple.attr("class", "ripple"); $ripple.addClass("animate").addClass(timestamp); setTimeout(function() { if ($ripple.hasClass(timestamp)) { $ripple.removeClass("animate").removeClass(timestamp); } }, 800); }); $(document).on("change", ".form-control", function() { if ($(this).val() !== "") { $(this).removeClass("empty"); } else { $(this).addClass("empty"); } }); });