Cyril SOUTI

Results 6 comments of Cyril SOUTI

Yes, I have 5gb of pictures (I work on an 3D webapp). This app have to be available offline quickly, fully and without that the user browses all. It's not...

@frankiefu yep I am going to try, thanks !

Oddly, Polymer alone (without gwt) works fine (tested with core-scaffold, core-drawer-panel) on this browsers. For example, https://www.polymer-project.org/0.5/components/core-elements/demo.html#core-animation works fine. I'm not sure, but gwt-polymer dependency must fetch webcomponent.js. I've tried...

I found a solution in using the method 2. 1 - I've made a custom polymer scaffold which raise an event when component is "domReady" 2 - In my gwt...

@Glchriste Actually, with polymer 1.x I have no more issue. So I advice you to use polymer 1.x even if scaffold component doesn't exist ; you can easily paper-drawer-panel, paper-header-panel,...

@Glchriste if you want to known when a polymer element is attached (ie dom ready) with GWT, you can do that: ``` java Element el; JsUtils.export(el, "attached", new Function() {...