Sha256: b78c04d876289cd4a3952674e7ef93e6dd70a227457bc792f97d74e4bf736c30
Contents?: true
Size: 644 Bytes
Versions: 3
Compression:
Stored size: 644 Bytes
Contents
/** * Register.js * * Released under LGPL License. * Copyright (c) 1999-2015 Ephox Corp. All rights reserved * * License: http://www.tinymce.com/license * Contributing: http://www.tinymce.com/contributing */ /** * This registers tinymce in common module loaders. * * @private * @class tinymce.Register */ define("tinymce/Register", [ ], function() { /*eslint consistent-this: 0 */ var context = this || window; var tinymce = function() { return context.tinymce; }; if (typeof context.define === "function") { // Bolt if (!context.define.amd) { context.define("ephox/tinymce", [], tinymce); } } return {}; });
Version data entries
3 entries across 3 versions & 1 rubygems