-
-
Notifications
You must be signed in to change notification settings - Fork 927
pelonpelon edited this page May 15, 2015
·
35 revisions
Common questions found on Gitter, the Google Group, and StackExchange
- Contributors: Please add links to gists instead of lengthy code examples
- Where can I find help learning Mithril?
- See the Mithril Community Page. Mithril developers are very friendly people!
- How can I add animation to my Mithril app?
- Leo wrote an article on integrating velocity.js here.
- There are community projects dealing with animation here.
- Animated Page Flip
- How do I fix this error:
"Please ensure the DOM element exists before rendering a template into it."
- Try putting the script tag for the offending javascript as the last thing inside the body tag.
- Why doesn't my view render?
- The view function must return a virtual element, not an array of elements:
return m("div")
return [m("div")]