/*========================================================================================= File Name: basic-inputs.js Description: Input field js for label type ---------------------------------------------------------------------------------------- Item Name: Robust - Responsive Admin Theme Version: 1.2 Author: GeeksLabs Author URL: http://www.themeforest.net/user/geekslabs ==========================================================================================*/ (function(window, document, $) { 'use strict'; var $html = $('html'); //label Positions $(".labelUp").labelinplace(); $(".labelDown").labelinplace({ labelPosition: "down" }); // Label Icons $(".labelIcon").labelinplace({ labelArrowRight: ' ', labelArrowDown: ' ', labelArrowUp: ' ' }); // Icons After Label $(".labelIconAfter").labelinplace({ labelArrowRight: ' ', labelArrowDown: ' ', labelArrowUp: ' ', labelIconPosition: "after", inputAttr: "id" }); })(window, document, jQuery);