123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- /**
- * @author mrdoob / http://mrdoob.com/
- */
- Menubar.Status = function ( editor ) {
- var container = new UI.Panel();
- container.setClass( 'menu right' );
- var checkbox = new UI.Checkbox( editor.config.getKey( 'autosave' ) );
- checkbox.onChange( function () {
- var value = this.getValue();
- editor.config.setKey( 'autosave', value );
- if ( value === true ) {
- editor.signals.sceneGraphChanged.dispatch();
- }
- } );
- container.add( checkbox );
- var title = new UI.Panel();
- title.setClass( 'title' );
- title.setTextContent( 'Autosave' );
- container.add( title );
- editor.signals.savingStarted.add( function () {
- title.setTextDecoration( 'underline' );
- } );
- editor.signals.savingFinished.add( function () {
- title.setTextDecoration( 'none' );
- } );
- return container;
- };
|