2001-09-20 04:02:59 +04:00
|
|
|
/*
|
|
|
|
* The contents of this file are subject to the Netscape Public
|
2000-05-10 01:22:01 +04:00
|
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
2001-09-20 04:02:59 +04:00
|
|
|
* the License at http://www.mozilla.org/NPL/
|
|
|
|
*
|
2000-05-10 01:22:01 +04:00
|
|
|
* Software distributed under the License is distributed on an "AS
|
|
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
* implied. See the License for the specific language governing
|
|
|
|
* rights and limitations under the License.
|
2001-09-20 04:02:59 +04:00
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Communicator client code, released
|
|
|
|
* March 31, 1998.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
|
|
|
* Communications Corporation. Portions created by Netscape are
|
2000-05-10 01:22:01 +04:00
|
|
|
* Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
2001-09-20 04:02:59 +04:00
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*/
|
2000-05-10 01:22:01 +04:00
|
|
|
|
|
|
|
// dialog initialization code
|
|
|
|
function Startup()
|
|
|
|
{
|
|
|
|
if (!InitEditorShell())
|
|
|
|
return;
|
|
|
|
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
SetWindowLocation();
|
2000-05-10 01:22:01 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
function KeepCurrentPage()
|
|
|
|
{
|
|
|
|
dump("KeepCurrentPage\n");
|
|
|
|
// Simple close dialog and don't change current page
|
|
|
|
//TODO: Should we force saving of the current page?
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
SaveWindowLocation();
|
2001-12-07 07:38:52 +03:00
|
|
|
return true;
|
2000-05-10 01:22:01 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
function UseOtherPage()
|
|
|
|
{
|
|
|
|
dump("UseOtherPage\n");
|
|
|
|
// Reload the URL -- that will get other editor's contents
|
2002-02-15 09:07:40 +03:00
|
|
|
setTimeout("editorShell.LoadUrl(GetDocumentUrl())", 10);
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
SaveWindowLocation();
|
2001-12-07 07:38:52 +03:00
|
|
|
return true;
|
2000-05-10 01:22:01 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
function PreventCancel()
|
|
|
|
{
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
SaveWindowLocation();
|
|
|
|
|
2000-05-10 01:22:01 +04:00
|
|
|
// Don't let Esc key close the dialog!
|
|
|
|
return false;
|
|
|
|
}
|