
com.asayama.gwt.bootstrap.client.BootstrapScripts Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gwt-angular-util Show documentation
Show all versions of gwt-angular-util Show documentation
Provides GWT utility classes for GWT Angular project. The utility classes
have no dependency on AngularJS.
The newest version!
package com.asayama.gwt.bootstrap.client;
import com.asayama.gwt.resources.client.ScriptResource;
import com.google.gwt.core.client.GWT;
import com.google.gwt.resources.client.ClientBundle;
/**
* Usage:
*
* {@code BootstrapScripts.INSTANCE.script().ensureInjected(JSObject.$wnd); }
*
*
* @author kyoken74
*/
public interface BootstrapScripts extends ClientBundle {
static BootstrapScripts INSTANCE = GWT.create(BootstrapScripts.class);
@Source("bootstrap.min.js")
ScriptResource script();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy