Index: trunk/extensions/UsabilityInitiative/js/plugins/jquery.wikiEditor.toolbar.js |
— | — | @@ -114,7 +114,11 @@ |
115 | 115 | } |
116 | 116 | } |
117 | 117 | }, |
| 118 | + modifyTool : function( context, data ){ |
| 119 | + |
| 120 | + }, |
118 | 121 | removeFromToolbar : function( context, data ) { |
| 122 | + js_log("f:removeFromToolbar"); |
119 | 123 | if ( typeof data.section == 'string' ) { |
120 | 124 | // Section |
121 | 125 | var tab = 'div.tabs span[rel=' + data.section + '].tab'; |
— | — | @@ -150,6 +154,7 @@ |
151 | 155 | // Just a section, remove the tab too! |
152 | 156 | context.modules.$toolbar.find( tab ).remove(); |
153 | 157 | } |
| 158 | + js_log('target is: ' + target); |
154 | 159 | context.modules.$toolbar.find( target ).remove(); |
155 | 160 | } |
156 | 161 | } |
— | — | @@ -450,10 +455,10 @@ |
451 | 456 | $(this).data( 'context' ).$ui.find( '.section-' + $(this).parent().attr( 'rel' ) ); |
452 | 457 | $(this).blur(); |
453 | 458 | var show = $section.css( 'display' ) == 'none'; |
454 | | - $section.parent().children().hide(); |
| 459 | + $section.parent().children().hide("fast"); |
455 | 460 | $(this).parent().parent().find( 'a' ).removeClass( 'current' ); |
456 | 461 | if ( show ) { |
457 | | - $section.show(); |
| 462 | + $section.show("fast"); |
458 | 463 | $(this).addClass( 'current' ); |
459 | 464 | } |
460 | 465 | |