Mozilla/mozilla/suite/browser/viewsource.js
davidm%netscape.com 40b0f14660 Remove obsolete code. Move some wallet code off to js
git-svn-id: svn://10.0.0.236/trunk@47871 18797224-902f-48f8-a5cc-f745e15eee43
1999-09-16 23:46:55 +00:00

21 lines
568 B
JavaScript

function onLoadViewSource() {
// Create and initialize the browser instance.
createBrowserInstance();
if ( appCore ) {
appCore.isViewSource = true;
appCore.setContentWindow(window.frames[0]);
appCore.setWebShellWindow(window);
// Get url whose source to view.
var url = window.arguments[0];
// Load the source (the app core will magically know what to do).
appCore.loadUrl( url );
} else {
// Give up.
alert( "Error creating browser instance\n" );
}
}