Although I’ve installed the Ember Inspector, I still get the following message in the console every time I start my app:
DEBUG: For more advanced debugging, install the Ember Inspector from https://chrome.google.com/webstore/detail/ember-inspector/bmdblncegkenkacieihfhpjfppoconhi
I did a little debugging and see that document.body.dataset.emberExtension
is undefined in the following if-statement:
// Inform the developer about the Ember Inspector if not installed.
if (!Ember.testing) {
if (typeof window !== 'undefined' && window.chrome && window.addEventListener) {
window.addEventListener("load", function() {
if (document.body && document.body.dataset && !document.body.dataset.emberExtension) {
Ember.debug('For more advanced debugging, install the Ember Inspector from https://chrome.google.com/webstore/detail/ember-inspector/bmdblncegkenkacieihfhpjfppoconhi');
}
}, false);
}
}
Minor issue, but just curious why?