Revert "when flipping between Tree and View tabs with edit on, clear out the containers for the toolbars before re-adding the toolbars -- this time in YUI"

... committeed too much stuff. ack

This reverts commit c19c3503d4.
This commit is contained in:
Scott Walters 2013-09-12 13:02:01 -05:00
parent c19c3503d4
commit 9d047a788d
5 changed files with 13 additions and 26 deletions

View file

@ -1877,8 +1877,6 @@ WebGUI.Admin.Tree.prototype.runHelperForSelected
var self = this;
var assetIds = this.getSelected();
alert("ok");
// Open the dialog with two progress bars
var dialog = new YAHOO.widget.Panel( 'helperForkModalDialog', {
"width" : '350px',

View file

@ -32,15 +32,6 @@ WebGUI.Toolbar.createAll = function( ) {
var holders = YAHOO.util.Selector.query( '.wg-admin-toolbar' );
for ( var i = 0; i < holders.length; i++ ) {
var holder = holders[i];
// when flipping between Tree and View tabs with edit on, clear out the containers for the toolbars before re-adding the toolbars
var holder_yui = new YAHOO.util.Element( holder );
var child;
while( child = YAHOO.util.Dom.getFirstChild( holder ) ) {
holder_yui.removeChild( child );
// console.log("removing: " + child + " from " + holder_yui);
}
var assetId = holder.id.match( /wg-admin-toolbar-(.+)/ )[1];
var toolbar = new WebGUI.Toolbar( assetId, { "parent" : holder } );
toolbar.getAssetData( assetId, bind( toolbar, toolbar.render ) );