How would you pass id=someScript and param1=value1 to the GWT ScriptInjector? Ie, the JS:
<script src="https://blah.com/someScript.js" id="someScript" param1="value1"></script>
Could be loaded like this:
ScriptInjector.fromUrl("https://blah.com/someScript.js").setCallback(new Callback<Void, Exception>() {
public void onSuccess(Void result) {
}
public void onFailure(Exception reason) {
}
}).inject();
However, where can I pass in the id="someScript" and param1="value1"?