Modal within other modal on UIkit
问题 When I'm clicking on the second modal, the first modal disappears. However, I want to keep it open as well! Is this a way to disable that behavior? I have also noticed that other frameworks such as Foundation have the same behavior. Here's my code: <a href="#my-id" data-uk-modal>Open Modal</a> <div id="my-id" class="uk-modal"> <div class="uk-modal-dialog"> <a class="uk-modal-close uk-close"></a> <p>Lorem ipsum...</p> <a href="#my-id2" data-uk-modal>Nested Modal</a> </div> </div> <div id="my