exception raised on FF38 (maybe more)
The following exception is raised (even on the demo) when loading the page
13:47:51.732 Exception { message: "", result: 2147500037, name: "NS_ERROR_FAILURE", filename: "http://localhost:4000/src/angular-w…", lineNumber: 322, columnNumber: 0, inner: null, data: null, stack: "link/scope.format@http://localhost:…" } "
Here is a stackoverflow on this issue: http://stackoverflow.com/questions/3250943/problems-with-execcommand-justification-in-firefox
Basically it happens because in the directive I set the contenteditable=true (or false) via the disabled scope parameter. This is so someone can disable the control if needed. It seems that Firefox doesnt like that I am setting it this way and wants contenteditable="true" right away. I will keep researching and see if I can figure out a better way to do this to avoid this error in Firefox. Thanks for letting me know