This commit is contained in:
beard%netscape.com 1999-03-14 03:06:08 +00:00
Родитель 42795cf050
Коммит bdc2f9c474
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -103,6 +103,8 @@ public class TrivialApplet extends Applet {
try {
URL location = new URL(urlField.getText());
System.out.println("going to URL: " + location);
JSObject window = JSObject.getWindow(TrivialApplet.this);
window.eval("alert('going to location " + location + "');");
getAppletContext().showDocument(location, "_new");
} catch (MalformedURLException mfue) {
}