Dec 08
|
The method GWT.isScript() can be used to detect if a GWT application is running in Hosted Mode. It will return false when running in Hosted Mode.
if (!GWT.isScript()) { // Am running in Hosted Mode }
CategoriesArchives
|
The method GWT.isScript() can be used to detect if a GWT application is running in Hosted Mode. It will return false when running in Hosted Mode. if (!GWT.isScript()) { // Am running in Hosted Mode } |
|