File size: 446 Bytes
8bccfc1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from IPython.display import display, Javascript

def show_popup():
    display(Javascript("""
        require(
            ['base/js/dialog'],
            function(dialog) {
                dialog.modal({
                    title: 'Welcome',
                    body: 'Popup place-holder',
                    buttons: {
                        'Ok': {}
                    }
                });
            }
        );
    """))

show_popup()