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

c# - Update a combobox from a presenter (MVP) -

How to understand 2 main() functions after using uftrace to profile the C++ program? -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -