javascript - Popup semantic ui possible bug -


there strange problem semantic ui popup. create dynamic content in page, div popup.

container = $('<div/>',             {             'width': 50,             'height': 40,             'data-content': 'some content',             'data-variation': "tiny",             preserve: false             }); 

then, in section of page, activate popup

container.popup({                 silent: true,                 hoverable: true,                 title :'some title'              }).popup('show'); 

all works fine, in page i've horizontal scroll. so, if show popup , scroll right, popup still remain in same position while container move left.


Comments

Popular posts from this blog

javascript - Confirm a form & display message if form is valid with JQuery -

Retrieving ETA (estimated time of arrival) with Google Distance Matrix API and public transit as transport mode -

android - ConstraintLayout: Realign baseline constraint in case if dependent view visibility was set to GONE -