fixed project archive in tutorial

This commit is contained in:
zmagod 2016-08-11 12:40:16 +02:00
parent 32699578ed
commit 2e1d81a985

View file

@ -422,7 +422,8 @@
exitOnOverlayClick: false,
exitOnEsc: false,
disableInteraction: true,
tooltipClass: 'custom'
tooltipClass: 'custom',
tooltipPosition: 'right'
})
.goToStep(goToStep)
.onafterchange(function (tarEl) {
@ -504,6 +505,19 @@
}
}
init();
//
function project_tutorial_helper(){
if( $('.panel').hasClass('introjs-showElement')){
$('.introjs-showElement')
.find('.form-submit-link')
.css({
'pointer-events': 'none',
'color': '#d2d2d2'});
}());
}
}
init();
project_tutorial_helper();
}());