When using Aurelia Materialize Bridge, two included polyfills break the application. The polyfills in question are: remove and append.
In the case of append the document object does not exist because it's a server environment, so it complains about Document not being defined. To fix this temporarily, I've had to edit the compiled source file append.js to the following:
When using Aurelia Materialize Bridge, two included polyfills break the application. The polyfills in question are:
remove
andappend
.In the case of
append
the document object does not exist because it's a server environment, so it complains about Document not being defined. To fix this temporarily, I've had to edit the compiled source fileappend.js
to the following:And in the
remove
compiled file,Text
is not defined (server once again). So I had to edit the compiled file and add in the following: