9 lines
168 B
JavaScript
9 lines
168 B
JavaScript
|
|
$('#chatbot').dialog({
|
|
autoOpen: false,
|
|
height: 500,
|
|
width: 450,
|
|
positon: {my: 'center top'}
|
|
});
|
|
|
|
$('#help').click(() => $('#chatbot').dialog('open')); |