Semantic-Org / Semantic-UI

Semantic is a UI component framework based around useful principles from natural language.
http://www.semantic-ui.com
MIT License
51.1k stars 4.94k forks source link

[POPUP] in examples there is delay as general option of popup, but only without declare 'show' option #7055

Open fungms opened 3 years ago

fungms commented 3 years ago

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 } }) ; '