12345678910111213141516171819202122232425262728293031323334353637 |
- /**
- * @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 () {
- editor.config.setKey( 'autosave', this.getValue() );
- } );
- 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;
- };
|