- Edited
Hello,I'm using v1.8.1.2 and i see confirma navigation and other confirmation boxes in all cases even if i port a reply.How can i disable this or what is the file responsible about this?Thank you.
Hello,I'm using v1.8.1.2 and i see confirma navigation and other confirmation boxes in all cases even if i port a reply.How can i disable this or what is the file responsible about this?Thank you.
Its in /scp/js/scp.jsIf you want to disable it, you will have to either remove it, or simply unload the event handler at the end of the file.So, if you add $(window).unbind('beforeunload'); just before the closing tags, it should stop that event!Meaning, the file should end like: }); $(window).unbind('beforeunload');});