X-Git-Url: https://scm.cri.minesparis.psl.eu/git/ckeditor.git/blobdiff_plain/871bad8291b6dbc29d489d95d185458caab25158..14d450d78a2d67ec1decd64c928151851961dd36:/_source/plugins/placeholder/dialogs/placeholder.js diff --git a/_source/plugins/placeholder/dialogs/placeholder.js b/_source/plugins/placeholder/dialogs/placeholder.js deleted file mode 100644 index d709b38..0000000 --- a/_source/plugins/placeholder/dialogs/placeholder.js +++ /dev/null @@ -1,71 +0,0 @@ -/* - * Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. - * For licensing, see LICENSE.html or http://ckeditor.com/license - */ - -(function() -{ - function placeholderDialog( editor, isEdit ) - { - - var lang = editor.lang.placeholder, - generalLabel = editor.lang.common.generalTab; - return { - title : lang.title, - minWidth : 300, - minHeight : 80, - contents : - [ - { - id : 'info', - label : generalLabel, - title : generalLabel, - elements : - [ - { - id : 'text', - type : 'text', - style : 'width: 100%;', - label : lang.text, - 'default' : '', - required : true, - validate : CKEDITOR.dialog.validate.notEmpty( lang.textMissing ), - setup : function( element ) - { - if ( isEdit ) - this.setValue( element.getText().slice( 2, -2 ) ); - }, - commit : function( element ) - { - var text = '[[' + this.getValue() + ']]'; - // The placeholder must be recreated. - CKEDITOR.plugins.placeholder.createPlaceholder( editor, element, text ); - } - } - ] - } - ], - onShow : function() - { - if ( isEdit ) - this._element = CKEDITOR.plugins.placeholder.getSelectedPlaceHoder( editor ); - - this.setupContent( this._element ); - }, - onOk : function() - { - this.commitContent( this._element ); - delete this._element; - } - }; - } - - CKEDITOR.dialog.add( 'createplaceholder', function( editor ) - { - return placeholderDialog( editor ); - }); - CKEDITOR.dialog.add( 'editplaceholder', function( editor ) - { - return placeholderDialog( editor, 1 ); - }); -} )();