pjs/editor/ui/dialogs/content/EditConflict.js

57 строки
1.4 KiB
JavaScript
Исходник Обычный вид История

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;
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?
SaveWindowLocation();
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
setTimeout("editorShell.LoadUrl(GetDocumentUrl())", 10);
SaveWindowLocation();
return true;
2000-05-10 01:22:01 +04:00
}
function PreventCancel()
{
SaveWindowLocation();
2000-05-10 01:22:01 +04:00
// Don't let Esc key close the dialog!
return false;
}