Menubar.Help.js 308 B

123456789101112
  1. Menubar.Help = function ( signals ) {
  2. var container = new UI.Panel( 'absolute' );
  3. container.setBackgroundColor( '#ccc' );
  4. container.setWidth( '120px' );
  5. container.setPadding( '10px' );
  6. container.add( new UI.Panel().add( new UI.Text().setValue( 'About' ).setColor( '#666' ) ) );
  7. return container;
  8. }
粤ICP备19079148号