PHP Classes

File: public/js/tinymce/src/plugins/table/src/main/js/selection/SelectionTypes.js

Recommend this page to a friend!
  Classes of Abed Nego Ragil Putra   GoLavaCMS   public/js/tinymce/src/plugins/table/src/main/js/selection/SelectionTypes.js   Download  
File: public/js/tinymce/src/plugins/table/src/main/js/selection/SelectionTypes.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: GoLavaCMS
Publish content on Web pages with SEO support
Author: By
Last change:
Date: 6 years ago
Size: 726 bytes
 

Contents

Class file image Download
/** * SelectionTypes.js * * Released under LGPL License. * Copyright (c) 1999-2017 Ephox Corp. All rights reserved * * License: http://www.tinymce.com/license * Contributing: http://www.tinymce.com/contributing */ define( 'tinymce.plugins.table.selection.SelectionTypes', [ 'ephox.katamari.api.Adt' ], function (Adt) { var type = Adt.generate([ { none: [] }, { multiple: [ 'elements' ] }, { single: [ 'selection' ] } ]); var cata = function (subject, onNone, onMultiple, onSingle) { return subject.fold(onNone, onMultiple, onSingle); }; return { cata: cata, none: type.none, multiple: type.multiple, single: type.single }; } );