Merge pull request #74 from calvincorreli/patch-1

Fix for scrolling to top in unsupported firefox
This commit is contained in:
Zeno Rocha 2015-10-09 09:01:19 +02:00
commit 17aedf5221

View File

@ -56,7 +56,7 @@ class ClipboardAction {
this.fakeElem = document.createElement('textarea');
this.fakeElem.style.position = 'absolute';
this.fakeElem.style.left = '-9999px';
this.fakeElem.style.top = document.body.scrollTop + 'px';
this.fakeElem.style.top = (window.pageYOffset || document.documentElement.scrollTop) + 'px';
this.fakeElem.setAttribute('readonly', '');
this.fakeElem.value = this.text;
this.selectedText = this.text;