(function($) {
"use strict";
//------------------------------------------
//slider
//------------------------------------------
jQuery(document).ready(function() {
jQuery("#bizwhoop-slider").owlCarousel({
navigation : true, // Show next and prev buttons
slideSpeed : 1000,
pagination : true,
paginationSpeed : 400,
singleItem:true,
video:true,
autoPlay : true,
transitionStyle : "fade",
navigationText: [
"",
""
]
});
/* =================================
=== FORM-CONTROL ====
=================================== */
jQuery(".form-control")
.focusout(function() {
if ($(this).val()=="")
$(this).removeClass("input-filled");
})
.focusin(function() {
$(this).addClass("input-filled");
})
});
})(jQuery);