Subversion Repository Public Repository

litesoft

Diff Revisions 473 vs 474 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/UserAgent.java

Diff revisions: vs.
  @@ -20,7 +20,7 @@
20 20
21 21 private Platform mPlatform;
22 22 private BrowserFamily mFamily;
23 - private String mReally;
23 + protected String mReally;
24 24
25 25 protected UserAgent()
26 26 {
  @@ -61,6 +61,11 @@
61 61 return mReally;
62 62 }
63 63
64 + public boolean isLegacyIE()
65 + {
66 + return false;
67 + }
68 +
64 69 public static native String getBrowserUserAgent() /*-{
65 70 return navigator.userAgent;
66 71 }-*/;