Re: First beta release of Vue GWT

2017-09-07 Thread Juan Pablo Gardella
Awesome! Great work On Thu, 7 Sep 2017 at 10:42 Adrien Baron wrote: > Hi! > > We have just released the first beta version of Vue GWT > . > Vue GWT integrates Vue.js with GWT 2.8 using > JsInterop. It lets

First beta release of Vue GWT

2017-09-07 Thread Adrien Baron
Hi! We have just released the first beta version of Vue GWT . Vue GWT integrates Vue.js with GWT 2.8 using JsInterop. It lets you write Vue.js components in Java. *Features* - HTML template, with *2-way data binding* - Template

divide by zero error from com.google.gwt.logging.client.LogConfiguration.

2017-09-07 Thread Tharpa Roberts
I am getting an error that is probably recursive. ConsoleLogHandler.java:69 Thu Sep 07 09:58:39 GMT-400 2017 com.google.gwt.logging.client.LogConfiguration SEVERE: divide by zerojava.lang.ArithmeticException: divide by zero at Unknown.fillInStackTrace_0_g$(gisinventory-0.js@3:8443) at

Re: divide by zero error from com.google.gwt.logging.client.LogConfiguration.

2017-09-07 Thread Tharpa Roberts
I now see that it does not happen upon load, but only after I have clicked an upload button. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: divide by zero error from com.google.gwt.logging.client.LogConfiguration.

2017-09-07 Thread Thomas Broyer
It looks like the error is in a setProgress method, probably your code (or a third party dependency). Maybe the browser doesn't give you the size of the file you're uploading (for whatever reason) and you're doing a division by 0 as a result when computing progress ratio. -- You received this