Current Behavior
In the README, you announce that Materialize is compatible with Firefox 31+.
It was the true for versions 0.100.2 and previous, but in 1.0.0-rc.1 you use the function insertAdjacentElement (for modal for example) which is only available only since the version 48 of Firefox :
https://developer.mozilla.org/fr/docs/Web/API/Element/insertAdjacentElement
To work around on my project, I developed a polyfill.
But I think it's interesting for you to know the problem.
Possible Solutions
- Modify the compatibilities announced,
- Integrate a polyfill of insertAdjacentElement,
- Or do not to use this function in your scripts in favor of a function available in Firefox 31 and more.
Current Behavior
In the README, you announce that Materialize is compatible with Firefox 31+.
It was the true for versions 0.100.2 and previous, but in 1.0.0-rc.1 you use the function insertAdjacentElement (for modal for example) which is only available only since the version 48 of Firefox :
https://developer.mozilla.org/fr/docs/Web/API/Element/insertAdjacentElement
To work around on my project, I developed a polyfill.
But I think it's interesting for you to know the problem.
Possible Solutions