12 lines
213 B
JavaScript
12 lines
213 B
JavaScript
(function ()
|
|
{
|
|
const form = document.querySelector('#mainForm');
|
|
if(form)
|
|
{
|
|
form.addEventListener('input', function ()
|
|
{
|
|
isPromptDesignDirty = true;
|
|
});
|
|
}
|
|
})();
|