Hi all, The meta tag viewport inside the template layout.html currently (and in trunk) uses semicolons to separate and trail the arguments in the content-attribute. Throws errors in Chrome (when inspecting). Easy fixed by using comma *and* by removing trailing separator. See http://stackoverflow.com/questions/5555125/viewport-tag-syntax Both the references in the comments inside layout.html agree.
- <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;"> + <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"> Nico

