Skip to content

Instantly share code, notes, and snippets.

@honsa
Created December 15, 2017 14:27
Show Gist options
  • Save honsa/94d205d97e1195ed0b89c387920aa144 to your computer and use it in GitHub Desktop.
Save honsa/94d205d97e1195ed0b89c387920aa144 to your computer and use it in GitHub Desktop.
change the google font default sentence
window.addEventListener('scroll', function(e) {
var elements = document.querySelectorAll('gf-content-editable');
[].forEach.call(elements, function(element) {
element.textContent = 'I am a funny sentence';
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment