Sha256: 922b120efaec71911a27ded0de68752f03059f439741e2b551029bceaf3d3980
Contents?: true
Size: 711 Bytes
Versions: 41
Compression:
Stored size: 711 Bytes
Contents
/** * PredicateId.js * * Released under LGPL License. * Copyright (c) 1999-2016 Ephox Corp. All rights reserved * * License: http://www.tinymce.com/license * Contributing: http://www.tinymce.com/contributing */ define('tinymce/inlite/core/PredicateId', [ 'global!tinymce.util.Tools' ], function (Tools) { var create = function (id, predicate) { return { id: id, predicate: predicate }; }; // fromContextToolbars :: [ContextToolbar] -> [PredicateId] var fromContextToolbars = function (toolbars) { return Tools.map(toolbars, function (toolbar) { return create(toolbar.id, toolbar.predicate); }); }; return { create: create, fromContextToolbars: fromContextToolbars }; });
Version data entries
41 entries across 41 versions & 2 rubygems