You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Awesome work you've done here. Just wanted to let you know of a minor but pesky issue:
Copying the code below from this repo directly works fine: javascript:var js = document.createElement('script');js.src = 'https://jwally.github.io/tadpoles-media-downloader/index.js';document.querySelectorAll('head')[0].appendChild(js).
But copying it from https://jwally.github.io/tadpoles-media-downloader/ does not work because the single quotation marks have been converted to fancy-pants directional quotation marks. javascript:var js = document.createElement(‘script’);js.src = ‘https://jwally.github.io/tadpoles-media-downloader/index.js’;document.querySelectorAll(‘head’)[0].appendChild(js)
The text was updated successfully, but these errors were encountered:
Awesome work you've done here. Just wanted to let you know of a minor but pesky issue:
Copying the code below from this repo directly works fine:
javascript:var js = document.createElement('script');js.src = 'https://jwally.github.io/tadpoles-media-downloader/index.js';document.querySelectorAll('head')[0].appendChild(js)
.But copying it from https://jwally.github.io/tadpoles-media-downloader/ does not work because the single quotation marks have been converted to fancy-pants directional quotation marks.
javascript:var js = document.createElement(‘script’);js.src = ‘https://jwally.github.io/tadpoles-media-downloader/index.js’;document.querySelectorAll(‘head’)[0].appendChild(js)
The text was updated successfully, but these errors were encountered: