| 12345678910111213141516171819202122232425262728293031323334353637 |
- /*=========================================================================================
- 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: ' <i class="icon-hand-o-right"></i> ',
- labelArrowDown: ' <i class="icon-hand-o-down"></i> ',
- labelArrowUp: ' <i class="icon-hand-o-up"></i> '
- });
- // Icons After Label
- $(".labelIconAfter").labelinplace({
- labelArrowRight: ' <i class="icon-caret-right"></i> ',
- labelArrowDown: ' <i class="icon-caret-down"></i> ',
- labelArrowUp: ' <i class="icon-caret-up"></i> ',
- labelIconPosition: "after",
- inputAttr: "id"
- });
- })(window, document, jQuery);
|