remark icon indicating copy to clipboard operation
remark copied to clipboard

document.origin is deprecated

Open brianchirls opened this issue 5 years ago • 1 comments

Chrome is reporting the following warning in the console:

document.origin is deprecated and will be removed in M70, around October 2018. Please use self.origin (window.origin) instead

Reference

The code in question is here

brianchirls avatar Sep 06 '18 23:09 brianchirls

The fix appears to be simple: replacing it with window.origin. This works on the latest Chrome. Not sure if there are any problems in other browsers. It doesn't appear to cause any problems in the latest Safari and Firefox in my Mac.

xaprb avatar Sep 08 '18 19:09 xaprb