Casey Driscoll

Results 4 comments of Casey Driscoll

There is a problem with window.navigator.standalone and !Modernizr.touch both evaluating to false. I hope to investigate and find a solution tomorrow. ``` console.log( 'window.navigator.standalone: ', window.navigator.standalone ); console.log( 'Modernizr.touch: ',...

Yeah after some research I'm not sure what the intent was. window.navigator.standalone returns true only for 'full screen' ios web apps, I believe when the page is saved to the...

I think subdomains solve your problem. You can do ``` puma-dev link -n api.myapp puma-dev link -n admin_dashboard.myapp ``` And then somewhere in an initializer use the subdomain to set...