fixed workflowimg link

This commit is contained in:
zmagod 2016-08-30 11:03:33 +02:00
parent 57c1707e81
commit 4b6567e488

View file

@ -137,11 +137,14 @@
$(document).ready(function(){ $(document).ready(function(){
if( $('div').hasClass('introjs-overlay')){ if( $('div').hasClass('introjs-overlay')){
$.each( $(".panel-title"), function(){ $.each( $(".panel-title"), function(){
$(this).css({ 'pointer-events': 'none' }); $(this).css({ "pointer-events": "none" });
});
$.each( $(".workflowimg-container"), function(){
$(this).css({ "pointer-events": "none" });
}); });
$.each( $(".dropdown-experiment-actions").find("li"), $.each( $(".dropdown-experiment-actions").find("li"),
function(){ function(){
$(this).css({ 'pointer-events': 'none' }); $(this).css({ "pointer-events": "none" });
}); });
} }
}); });
@ -149,11 +152,14 @@
function restore_after_tutorial(){ function restore_after_tutorial(){
$.each( $(".panel-title"), function(){ $.each( $(".panel-title"), function(){
$(this).css({ 'pointer-events': 'auto' }); $(this).css({ "pointer-events": "auto" });
});
$.each( $(".workflowimg-container"), function(){
$(this).css({ "pointer-events": "auto" });
}); });
$.each( $(".dropdown-experiment-actions").find("li"), $.each( $(".dropdown-experiment-actions").find("li"),
function(){ function(){
$(this).css({ 'pointer-events': 'auto' }); $(this).css({ "pointer-events": "auto" });
}); });
} }