Gilles Grousset

Results 74 comments of Gilles Grousset

Hi, Could you tell me which version of Ghost4J is used for your test ? For the native GS API / Java interaction, Ghost4J uses JNA. when a crash like...

Hi, It is probably a touch event compatibility issue between the 2 components. Could you give me the code to reproduce this issue ? Regards, Gilles

Hi, Swipe event probably don't work because on touchmove events, default event are prevented : ``` // Add touch move listener container.bind(_getTouchEventName($this, 'touchmove'), function(event) { // Prevent default behaviour event.preventDefault();...

Hi, The event is fired when you are 10% before the bottom of your content by default (see bottomDetectionOffset option).

Hi, I actually never tried to test scrollz in an Android WebView. An Android WebView is actually much slower than the Chrome Browser, except on Android 4.4 and above. The...

Hi, That's it ! But don't forget to include the .js and the .css file in your page, as described here: ``` html ``` Regards, Gilles

Hi, I don't know Solaris much... It seems that JNA does not search the shared lib at the right place. To fix that, you can set the _jna.library.path_ property to...

Hi, Does it work with the built in browser ? Could you vive me more information about what is not working ? Regards, Gilles

OK, Thank you. I will have a look at it when I have time. Gilles

Hi, The best is to disable content loading initially. If you look at the code of the mobile.html example: 1. Comment the initial data loading and hide the pull header:...