/*=========================================================================================
File Name: basic-inputs.js
Description: Input field js for label type
----------------------------------------------------------------------------------------
Item Name: Modern Admin - Clean Bootstrap 4 Dashboard HTML Template
Version: 1.0
Author: Pixinvent
Author URL: hhttp://www.themeforest.net/user/pixinvent
==========================================================================================*/
(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);