--- Index: trunk/phase3/skins/common/preview.js =================================================================== --- trunk/phase3/skins/common/preview.js (revision 72349) +++ trunk/phase3/skins/common/preview.js (working copy) @@ -7,6 +7,9 @@ $( mw ).trigger( 'LivePreviewPrepare' ); + //Jump to top, this is where the interesting parts will be + window.location = "#"; + var postData = $('#editform').formToArray(); postData.push( { 'name' : 'wpPreview', 'value' : '1' } ); @@ -15,10 +18,12 @@ '#catlinks']; var copySelector = copyElements.join(','); - $.each( copyElements, function(k,v) { $(v).fadeOut('fast'); } ); + $.each( copyElements, function(k,v) { $(v).fadeTo('fast', 0.4) } ); // Display a loading graphic var loadSpinner = $('
'); + //Move away from header (default is -16px) + loadSpinner.css('top', '-8px'); $('#wikiPreview').before( loadSpinner ); var page = $('
'); @@ -43,7 +48,7 @@ $.each( copyElements, function(k,v) { // Don't belligerently show elements that are supposed to be hidden - $(v).fadeIn( 'fast', function() { $(this).css('display', ''); } ); + $(v).fadeTo( 'fast',1, function() { $(this).css('display', ''); } ); } ); loadSpinner.remove();