You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wanted to try out vaadin-grid inside a Chrome packaged app, but VaadinGridImport.nocache.js attempts to do a document.write (not allowed) which throws an exception and causes everything to break.
Also it modifies document.onbeforeunload, etc, which will also not work.
Also why is this file obfuscated? Is there an un-obfuscated version that I can use easily?
The text was updated successfully, but these errors were encountered:
Unfortunately I'm not familiar with Chrome Package Apps, but if #16 causes them to break, we need to investigate it further.
<v-grid> is based on the Vaadin Framework Grid component and it's implemented in Java using GWT. It's compiled into minified/obfuscated Javascript by default, and in our case VaadinGridImport.nocache.js the size goes down ~248KB from ~902KB normal version.
If it helps, you can clone vaadin/components and run gulp gwt --gwt-pretty to compile a prettified version. You can join our Gitter chat if you need further instructions.
I wanted to try out vaadin-grid inside a Chrome packaged app, but VaadinGridImport.nocache.js attempts to do a document.write (not allowed) which throws an exception and causes everything to break.
Also it modifies document.onbeforeunload, etc, which will also not work.
Also why is this file obfuscated? Is there an un-obfuscated version that I can use easily?
The text was updated successfully, but these errors were encountered: