The confirmation popup displays a comma between the Ok and Cancel buttons - this can be seen in the example in the documentation.
Steps to reproduce the behavior:
Go to Popups: Confirmation documentation
Click on first 'Run Example" button
See comma between the Ok and Cancel buttons
OS: Windows 10
Browser: Chrome, Edge
Looking at the code in popup.js, the buttons are created in an array which is appended to a string using array.join(). The default delimiter for join is a comma, so the solution may be to use a parameter of an empty string: buttons.join('').
The confirmation popup displays a comma between the Ok and Cancel buttons - this can be seen in the example in the documentation.
Steps to reproduce the behavior:
Looking at the code in popup.js, the buttons are created in an array which is appended to a string using array.join(). The default delimiter for join is a comma, so the solution may be to use a parameter of an empty string: buttons.join('').