| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206 |
- /*!
-
- =========================================================
- * Bootstrap Wizard - v1.1.1
- =========================================================
-
- * Product Page: https://www.creative-tim.com/product/bootstrap-wizard
- * Copyright 2017 Creative Tim (http://www.creative-tim.com)
- * Licensed under MIT (https://github.com/creativetimofficial/bootstrap-wizard/blob/master/LICENSE.md)
-
- =========================================================
-
- * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
- */
-
- // Get Shit Done Kit Bootstrap Wizard Functions
-
- searchVisible = 0;
- transparent = true;
-
- $(document).ready(function(){
-
- /* Activate the tooltips */
- $('[rel="tooltip"]').tooltip();
-
- // Code for the Validator
- var $validator = $('.wizard-card form').validate({
- rules: {
- firstname: {
- required: true,
- minlength: 3
- },
- lastname: {
- required: true,
- minlength: 3
- },
- email: {
- required: true,
- minlength: 3,
- }
- }
- });
-
- // Wizard Initialization
- $('.wizard-card').bootstrapWizard({
- 'tabClass': 'nav nav-pills',
- 'nextSelector': '.btn-next',
- 'previousSelector': '.btn-previous',
-
- onNext: function(tab, navigation, index) {
- var $valid = $('.wizard-card form').valid();
- if(!$valid) {
- $validator.focusInvalid();
- return false;
- }
- },
-
- onInit : function(tab, navigation, index){
-
- //check number of tabs and fill the entire row
- var $total = navigation.find('li').length;
- $width = 100/$total;
- var $wizard = navigation.closest('.wizard-card');
-
- $display_width = $(document).width();
-
- if($display_width < 600 && $total > 3){
- $width = 50;
- }
-
- navigation.find('li').css('width',$width + '%');
- /*$first_li = navigation.find('li:first-child a').html();*/
- /* $moving_div = $('<div class="moving-tab">' + $first_li + '</div>');*/
- $moving_div = $('<div class="moving-tab"></div>');
- $('.wizard-card .wizard-navigation').append($moving_div);
- refreshAnimation($wizard, index);
- $('.moving-tab').css('transition','transform 0s');
- },
-
- onTabClick : function(tab, navigation, index){
-
- var $valid = $('.wizard-card form').valid();
-
- if(!$valid){
- return false;
- } else {
- return true;
- }
- },
-
- onTabShow: function(tab, navigation, index) {
- var $total = navigation.find('li').length;
- var $current = index+1;
-
- var $wizard = navigation.closest('.wizard-card');
-
- // If it's the last tab then hide the last button and show the finish instead
- if($current >= $total) {
- $($wizard).find('.btn-next').hide();
- $($wizard).find('.btn-finish').show();
- } else {
- $($wizard).find('.btn-next').show();
- $($wizard).find('.btn-finish').hide();
- }
-
- button_text = navigation.find('li:nth-child(' + $current + ') a').html();
-
- setTimeout(function(){
- $('.moving-tab').text(button_text);
- }, 150);
-
- var checkbox = $('.footer-checkbox');
-
- if( !index == 0 ){
- $(checkbox).css({
- 'opacity':'0',
- 'visibility':'hidden',
- 'position':'absolute'
- });
- } else {
- $(checkbox).css({
- 'opacity':'1',
- 'visibility':'visible'
- });
- }
-
- refreshAnimation($wizard, index);
- }
- });
-
-
- // Prepare the preview for profile picture
- $("#wizard-picture").change(function(){
- readURL(this);
- });
-
- $('[data-toggle="wizard-radio"]').click(function(){
- wizard = $(this).closest('.wizard-card');
- wizard.find('[data-toggle="wizard-radio"]').removeClass('active');
- $(this).addClass('active');
- $(wizard).find('[type="radio"]').removeAttr('checked');
- $(this).find('[type="radio"]').attr('checked','true');
- });
-
- $('[data-toggle="wizard-checkbox"]').click(function(){
- if( $(this).hasClass('active')){
- $(this).removeClass('active');
- $(this).find('[type="checkbox"]').removeAttr('checked');
- } else {
- $(this).addClass('active');
- $(this).find('[type="checkbox"]').attr('checked','true');
- }
- });
-
- $('.set-full-height').css('height', 'auto');
-
- });
-
-
-
- //Function to show image before upload
-
- function readURL(input) {
- if (input.files && input.files[0]) {
- var reader = new FileReader();
-
- reader.onload = function (e) {
- $('#wizardPicturePreview').attr('src', e.target.result).fadeIn('slow');
- }
- reader.readAsDataURL(input.files[0]);
- }
- }
-
- $(window).resize(function(){
- $('.wizard-card').each(function(){
- $wizard = $(this);
- index = $wizard.bootstrapWizard('currentIndex');
- refreshAnimation($wizard, index);
-
- $('.moving-tab').css({
- 'transition': 'transform 0s'
- });
- });
- });
-
- function refreshAnimation($wizard, index){
- total_steps = $wizard.find('li').length;
- move_distance = $wizard.width() / total_steps;
- step_width = move_distance;
- move_distance *= index;
-
- $wizard.find('.moving-tab').css('width', step_width);
- }
-
- function debounce(func, wait, immediate) {
- var timeout;
- return function() {
- var context = this, args = arguments;
- clearTimeout(timeout);
- timeout = setTimeout(function() {
- timeout = null;
- if (!immediate) func.apply(context, args);
- }, wait);
- if (immediate && !timeout) func.apply(context, args);
- };
- };
|