To get rid of this ad please Sign up/Login.
Difference between revisions of "MediaWiki:Common.js"
m |
m |
||
| Line 36: | Line 36: | ||
.animate( { width: 4 }, 1200); | .animate( { width: 4 }, 1200); | ||
}); | }); | ||
Revision as of 00:58, 22 February 2013
/* Any JavaScript here will be loaded for all users on every page load. */
/** ImageMapEdit *********************************************************
* http://meta.wikimedia.org/wiki/User_talk:Dapete/ImageMapEdit
*/
importScriptURI('http://toolserver.org/~dapete/ime/ime.js');
/**
* Tab/Panel right slide
* @author mwjames
*/
$("#panel-tab").click( function (event) {
event.stopPropagation();
showIfNotVisible( "#panel-content" );
} );
function showIfNotVisible( element ) {
var width = $( '#panel' ).find( 'table').width() + 8;
if ( $(element).css( "width" ) == width + 'px' )
$(element).animate( { width: 4 }, 500);
else
$(element).animate( { width: width }, 500);
};
$(function(){
var element = $("#panel-content");
var width = element.find( 'table').width() + 8;
element
.width( width )
.animate( { width: 4 }, 1200);
});