Welcome to the Angular feedback portal. We’re happy you’re here! If you have feedback on how to improve the Angular, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

While using Firefox, the copy function will scroll the page to the top.

I've attached a GIF reproducing the issue using the demo page here:

https://ej2.syncfusion.com/angular/demos/document-editor/default/


I was able to work around the issue by modifying the copyToClipboard function by adding

{preventScroll: true} to div.focus() in this section:


if (navigator.userAgent.indexOf('Firefox') !== -1) {

    div.tabIndex = 0;

    div.focus();

}