mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-22 23:03:00 +08:00
fixed workflowimg link
This commit is contained in:
parent
57c1707e81
commit
4b6567e488
1 changed files with 10 additions and 4 deletions
|
@ -137,11 +137,14 @@
|
|||
$(document).ready(function(){
|
||||
if( $('div').hasClass('introjs-overlay')){
|
||||
$.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"),
|
||||
function(){
|
||||
$(this).css({ 'pointer-events': 'none' });
|
||||
$(this).css({ "pointer-events": "none" });
|
||||
});
|
||||
}
|
||||
});
|
||||
|
@ -149,11 +152,14 @@
|
|||
|
||||
function restore_after_tutorial(){
|
||||
$.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"),
|
||||
function(){
|
||||
$(this).css({ 'pointer-events': 'auto' });
|
||||
$(this).css({ "pointer-events": "auto" });
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue