Path: blob/master/ckeditor_4.6.2/samples/old/dialog/assets/my_dialog.js
1021 views
/**1* Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.2* For licensing, see LICENSE.md or http://ckeditor.com/license3*/45CKEDITOR.dialog.add( 'myDialog', function() {6return {7title: 'My Dialog',8minWidth: 400,9minHeight: 200,10contents: [11{12id: 'tab1',13label: 'First Tab',14title: 'First Tab',15elements: [16{17id: 'input1',18type: 'text',19label: 'Text Field'20},21{22id: 'select1',23type: 'select',24label: 'Select Field',25items: [26[ 'option1', 'value1' ],27[ 'option2', 'value2' ]28]29}30]31},32{33id: 'tab2',34label: 'Second Tab',35title: 'Second Tab',36elements: [37{38id: 'button1',39type: 'button',40label: 'Button Field'41}42]43}44]45};46} );47484950