orbit-basic/public/javascripts/ckeditor/_source/plugins/link/dialogs/anchor.js

100 lines
2.7 KiB
JavaScript
Raw Normal View History

/*
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.dialog.add( 'anchor', function( editor )
{
// Function called in onShow to load selected element.
var loadElements = function( editor, selection, element )
{
this.editMode = true;
this.editObj = element;
var attributeValue = this.editObj.getAttribute( 'name' );
if ( attributeValue )
this.setValueOf( 'info','txtName', attributeValue );
else
this.setValueOf( 'info','txtName', "" );
};
return {
title : editor.lang.anchor.title,
minWidth : 300,
minHeight : 60,
onOk : function()
{
// Always create a new anchor, because of IE BUG.
var name = this.getValueOf( 'info', 'txtName' ),
element = CKEDITOR.env.ie && !( CKEDITOR.document.$.documentMode >= 8 ) ?
editor.document.createElement( '<a name="' + CKEDITOR.tools.htmlEncode( name ) + '">' ) :
editor.document.createElement( 'a' );
// Move contents and attributes of old anchor to new anchor.
if ( this.editMode )
{
this.editObj.copyAttributes( element, { name : 1 } );
this.editObj.moveChildren( element );
}
// Set name.
element.data( 'cke-saved-name', false );
element.setAttribute( 'name', name );
// Insert a new anchor.
var fakeElement = editor.createFakeElement( element, 'cke_anchor', 'anchor' );
if ( !this.editMode )
editor.insertElement( fakeElement );
else
{
fakeElement.replace( this.fakeObj );
editor.getSelection().selectElement( fakeElement );
}
return true;
},
onShow : function()
{
this.editObj = false;
this.fakeObj = false;
this.editMode = false;
var selection = editor.getSelection();
var element = selection.getSelectedElement();
if ( element && element.data( 'cke-real-element-type' ) && element.data( 'cke-real-element-type' ) == 'anchor' )
{
this.fakeObj = element;
element = editor.restoreRealElement( this.fakeObj );
loadElements.apply( this, [ editor, selection, element ] );
selection.selectElement( this.fakeObj );
}
this.getContentElement( 'info', 'txtName' ).focus();
},
contents : [
{
id : 'info',
label : editor.lang.anchor.title,
accessKey : 'I',
elements :
[
{
type : 'text',
id : 'txtName',
label : editor.lang.anchor.name,
required: true,
validate : function()
{
if ( !this.getValue() )
{
alert( editor.lang.anchor.errorName );
return false;
}
return true;
}
}
]
}
]
};
} );