fixed: after editting assets from the asset manager, it returns to site instead of manager

This commit is contained in:
Graham Knop 2008-08-27 15:09:35 +00:00
parent 0f41a4916a
commit 2158d13b45
3 changed files with 3 additions and 2 deletions

View file

@ -86,7 +86,7 @@ WebGUI.AssetManager.formatActions
var menu = new YAHOO.widget.Menu( "moreMenu" + oRecord.getData( 'assetId' ), options );
YAHOO.util.Event.onDOMReady( function () { menu.render( document.getElementById( 'assetManager' ) ) } );
YAHOO.util.Event.addListener( more, "click", function () { menu.show(); menu.focus(); }, null, menu );
YAHOO.util.Event.addListener( more, "click", function (e) { menu.show(); menu.focus(); YAHOO.util.Event.stopEvent(e); }, null, menu );
};
/*---------------------------------------------------------------------------