Index: trunk/extensions/UsabilityInitiative/UsabilityInitiative.hooks.php |
— | — | @@ -70,15 +70,15 @@ |
71 | 71 | array( 'src' => 'js/plugins/jquery.suggestions.js', 'version' => 5 ), |
72 | 72 | array( 'src' => 'js/plugins/jquery.textSelection.js', 'version' => 16 ), |
73 | 73 | array( 'src' => 'js/plugins/jquery.wikiEditor.js', 'version' => 12 ), |
74 | | - array( 'src' => 'js/plugins/jquery.wikiEditor.toolbar.js', 'version' => 13 ), |
| 74 | + array( 'src' => 'js/plugins/jquery.wikiEditor.toolbar.js', 'version' => 14 ), |
75 | 75 | array( 'src' => 'js/plugins/jquery.wikiEditor.dialogs.js', 'version' => 6 ), |
76 | 76 | array( 'src' => 'js/plugins/jquery.wikiEditor.toc.js', 'version' => 22 ), |
77 | 77 | ), |
78 | 78 | 'combined' => array( |
79 | | - array( 'src' => 'js/plugins.combined.js', 'version' => 48 ), |
| 79 | + array( 'src' => 'js/plugins.combined.js', 'version' => 49 ), |
80 | 80 | ), |
81 | 81 | 'minified' => array( |
82 | | - array( 'src' => 'js/plugins.combined.min.js', 'version' => 48 ), |
| 82 | + array( 'src' => 'js/plugins.combined.min.js', 'version' => 49 ), |
83 | 83 | ), |
84 | 84 | ), |
85 | 85 | ); |
Index: trunk/extensions/UsabilityInitiative/js/plugins/jquery.wikiEditor.toolbar.js |
— | — | @@ -462,10 +462,12 @@ |
463 | 463 | $sections.css('overflow', 'hidden'); |
464 | 464 | if ( show ) { |
465 | 465 | $section.fadeIn( 'fast' ); |
466 | | - $sections.animate( { 'height': $section.outerHeight() }, $section.outerHeight() * 2, function() { $(this).css('overflow', 'visible'); } ); |
| 466 | + $sections.animate( { 'height': $section.outerHeight() }, $section.outerHeight() * 2, function() { |
| 467 | + $(this).css('overflow', 'visible'); } ); |
467 | 468 | $(this).addClass( 'current' ); |
468 | 469 | } else { |
469 | | - $sections.animate( { 'height': 0 }, $section.outerHeight() * 2, function() { $(this).css('overflow', 'visible'); } ); |
| 470 | + $sections.animate( { 'height': 0 }, $section.outerHeight() * 2, function() { |
| 471 | + $(this).css('overflow', 'visible'); } ); |
470 | 472 | } |
471 | 473 | // Click tracking |
472 | 474 | if($.trackAction != undefined){ |
Index: trunk/extensions/UsabilityInitiative/js/plugins.combined.js |
— | — | @@ -2086,10 +2086,12 @@ |
2087 | 2087 | $sections.css('overflow', 'hidden'); |
2088 | 2088 | if ( show ) { |
2089 | 2089 | $section.fadeIn( 'fast' ); |
2090 | | - $sections.animate( { 'height': $section.outerHeight() }, $section.outerHeight() * 2, function() { $(this).css('overflow', 'visible'); } ); |
| 2090 | + $sections.animate( { 'height': $section.outerHeight() }, $section.outerHeight() * 2, function() { |
| 2091 | + $(this).css('overflow', 'visible'); } ); |
2091 | 2092 | $(this).addClass( 'current' ); |
2092 | 2093 | } else { |
2093 | | - $sections.animate( { 'height': 0 }, $section.outerHeight() * 2, function() { $(this).css('overflow', 'visible'); } ); |
| 2094 | + $sections.animate( { 'height': 0 }, $section.outerHeight() * 2, function() { |
| 2095 | + $(this).css('overflow', 'visible'); } ); |
2094 | 2096 | } |
2095 | 2097 | // Click tracking |
2096 | 2098 | if($.trackAction != undefined){ |