1234567891011121314151617181920212223242526272829303132333435363738 |
- Menubar.Help = function ( editor ) {
- var container = new UI.Panel();
- container.setClass( 'menu' );
- var title = new UI.Panel();
- title.setTextContent( 'Help' );
- title.setMargin( '0px' );
- title.setPadding( '8px' );
- container.add( title );
- //
- var options = new UI.Panel();
- options.setClass( 'options' );
- container.add( options );
- // source code
- var option = new UI.Panel();
- option.setClass( 'option' );
- option.setTextContent( 'Source code' );
- option.onClick( function () { window.open( 'https://github.com/mrdoob/three.js/tree/master/editor', '_blank' ) } );
- options.add( option );
- // about
- var option = new UI.Panel();
- option.setClass( 'option' );
- option.setTextContent( 'About' );
- option.onClick( function () { window.open( 'http://threejs.org', '_blank' ) } );
- options.add( option );
- //
- return container;
- }
|