| 123456789101112131415161718192021222324252627282930313233 |
- /**
- * MenuBar.js
- *
- * Copyright, Moxiecode Systems AB
- * Released under LGPL License.
- *
- * License: http://www.tinymce.com/license
- * Contributing: http://www.tinymce.com/contributing
- */
- /**
- * Creates a new menubar.
- *
- * @-x-less MenuBar.less
- * @class tinymce.ui.MenuBar
- * @extends tinymce.ui.Container
- */
- define("tinymce/ui/MenuBar", [
- "tinymce/ui/Toolbar"
- ], function(Toolbar) {
- "use strict";
- return Toolbar.extend({
- Defaults: {
- role: 'menubar',
- containerCls: 'menubar',
- ariaRoot: true,
- defaults: {
- type: 'menubutton'
- }
- }
- });
- });
|