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
{{ message }}
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.
This may have been reported in a more cryptic way :-)
This code
var observer = new PathObserver(document, 'title');
observer.open(function(newValue, oldValue) {
console.info(newValue,oldValue)
});
does nothing in chrome, which supports object.observe(), but works fine in firefox, using Platform.performMicrotaskCheckpoint();
That only happens to the document.title. Perhaps there is something special about the variable in Chrome ? It doesn't give any warnings (I know window.title would be refused by chrome, but that spawns a warning).
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
This may have been reported in a more cryptic way :-)
This code
does nothing in chrome, which supports object.observe(), but works fine in firefox, using Platform.performMicrotaskCheckpoint();
That only happens to the document.title. Perhaps there is something special about the variable in Chrome ? It doesn't give any warnings (I know window.title would be refused by chrome, but that spawns a warning).
The text was updated successfully, but these errors were encountered: