Semantic-UI
Semantic-UI copied to clipboard
[POPUP] in examples there is delay as general option of popup, but only without declare 'show' option
now in https://semantic-ui.com/modules/popup.html#/examples is
$('.example .menu .browse') .popup({ inline : true, hoverable : true, position : 'bottom left', delay: { show: 300, hide: 800 } }) ;
is working without 'show' and 'hide' option, when we declare 'show' group option, then delay is working when : ` $('.example .menu .browse') .popup({ inline : true, hoverable : true, position : 'bottom left', show : { effect: "slide", duration: 200, delay:1000 }, hide : { effect: "puff", duration: 200, delay:500 } }) ; '