After upgrading from Ember.js from 1.9 to 1.10, I received the following error:
Uncaught InvalidCharacterError: Failed to execute 'setAttribute' in 'Element': '"' is not a valid attribute name.
prototype.setAttribute = function(element, name, value) {
element.setAttribute(name, String(value));
};
Values:
value: ""
name: """
element: <span></span>
What is the easiest way to find out what problem may occur during the upgrade and what needs to be fixed? The error is not very user friendly.
source
share