Hello! I find this: if you set the target parameter by using the methods openLocation(location, target) or openLocation(location, target, visibleChrome) the actual code sets to null when it calls the main method openLocation(location, target, visibleChrome, resizeAllowed). I made this changes in thinwire.ui.Hyperlink class:
Hello! I find this: if you set the target parameter by using the methods openLocation(location, target) or openLocation(location, target, visibleChrome) the actual code sets to null when it calls the main method openLocation(location, target, visibleChrome, resizeAllowed). I made this changes in thinwire.ui.Hyperlink class:
before:
public static void openLocation(String location, String target) {
openLocation(location, null, false, false);
}
public static void openLocation(String location, String target, boolean visibleChrome) {
openLocation(location, null, visibleChrome, false);
}
after:
public static void openLocation(String location, String target) {
openLocation(location, target, false, false);
}
public static void openLocation(String location, String target, boolean visibleChrome) {
openLocation(location, target, visibleChrome, false);
}