/** * @author mrdoob / http://mrdoob.com/ */ Menubar.Help = function ( editor ) { var strings = editor.strings; var container = new UI.Panel(); container.setClass( 'menu' ); var title = new UI.Panel(); title.setClass( 'title' ); title.setTextContent( strings.getKey( 'menubar/help' ) ); container.add( title ); var options = new UI.Panel(); options.setClass( 'options' ); container.add( options ); // Source code var option = new UI.Row(); option.setClass( 'option' ); option.setTextContent( strings.getKey( 'menubar/help/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.Row(); option.setClass( 'option' ); option.setTextContent( strings.getKey( 'menubar/help/about' ) ); option.onClick( function () { window.open( 'http://threejs.org', '_blank' ); } ); options.add( option ); return container; };