|
@@ -15,6 +15,14 @@ Menubar.Edit = function ( signals ) {
|
|
|
options.setClass( 'options' );
|
|
|
container.add( options );
|
|
|
|
|
|
+ // clone
|
|
|
+
|
|
|
+ var option = new UI.Panel();
|
|
|
+ option.setClass( 'option' );
|
|
|
+ option.setTextContent( 'Clone' );
|
|
|
+ option.onClick( function () { signals.cloneSelectedObject.dispatch(); } );
|
|
|
+ options.add( option );
|
|
|
+
|
|
|
// delete
|
|
|
|
|
|
var option = new UI.Panel();
|