X-Git-Url: https://scm.cri.minesparis.psl.eu/git/ckeditor.git/blobdiff_plain/871bad8291b6dbc29d489d95d185458caab25158..14d450d78a2d67ec1decd64c928151851961dd36:/_source/plugins/listblock/plugin.js diff --git a/_source/plugins/listblock/plugin.js b/_source/plugins/listblock/plugin.js deleted file mode 100644 index e4898a5..0000000 --- a/_source/plugins/listblock/plugin.js +++ /dev/null @@ -1,268 +0,0 @@ -/* -Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. -For licensing, see LICENSE.html or http://ckeditor.com/license -*/ - -CKEDITOR.plugins.add( 'listblock', -{ - requires : [ 'panel' ], - - onLoad : function() - { - CKEDITOR.ui.panel.prototype.addListBlock = function( name, definition ) - { - return this.addBlock( name, new CKEDITOR.ui.listBlock( this.getHolderElement(), definition ) ); - }; - - CKEDITOR.ui.listBlock = CKEDITOR.tools.createClass( - { - base : CKEDITOR.ui.panel.block, - - $ : function( blockHolder, blockDefinition ) - { - blockDefinition = blockDefinition || {}; - - var attribs = blockDefinition.attributes || ( blockDefinition.attributes = {} ); - ( this.multiSelect = !!blockDefinition.multiSelect ) && - ( attribs[ 'aria-multiselectable' ] = true ); - // Provide default role of 'listbox'. - !attribs.role && ( attribs.role = 'listbox' ); - - // Call the base contructor. - this.base.apply( this, arguments ); - - var keys = this.keys; - keys[ 40 ] = 'next'; // ARROW-DOWN - keys[ 9 ] = 'next'; // TAB - keys[ 38 ] = 'prev'; // ARROW-UP - keys[ CKEDITOR.SHIFT + 9 ] = 'prev'; // SHIFT + TAB - keys[ 32 ] = CKEDITOR.env.ie ? 'mouseup' : 'click'; // SPACE - CKEDITOR.env.ie && ( keys[ 13 ] = 'mouseup' ); // Manage ENTER, since onclick is blocked in IE (#8041). - - this._.pendingHtml = []; - this._.items = {}; - this._.groups = {}; - }, - - _ : - { - close : function() - { - if ( this._.started ) - { - this._.pendingHtml.push( '' ); - delete this._.started; - } - }, - - getClick : function() - { - if ( !this._.click ) - { - this._.click = CKEDITOR.tools.addFunction( function( value ) - { - var marked = true; - - if ( this.multiSelect ) - marked = this.toggle( value ); - else - this.mark( value ); - - if ( this.onClick ) - this.onClick( value, marked ); - }, - this ); - } - return this._.click; - } - }, - - proto : - { - add : function( value, html, title ) - { - var pendingHtml = this._.pendingHtml, - id = CKEDITOR.tools.getNextId(); - - if ( !this._.started ) - { - pendingHtml.push( '