MediaWiki:Gadget-CropTool.js

From wikishia

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
// CropTool code begins, see [[Commons:CropTool]] for details
'use strict';
var title = mw.config.get('wgTitle');
if (mw.config.get('wgNamespaceNumber') === 6 &&
	mw.config.get('wgIsArticle') &&
	/(PNG|GIF|JPE?G|DJVU|PDF|TIF?F)$/i.test(title) &&
	document.getElementById('file')) {
	$(function () {
		title = new mw.Uri('https://croptool.toolforge.org/')
			.extend({
				title: title,
				page: new mw.Uri().query.page,
				site: mw.config.get('wgDBname') !== 'commonswiki' ? mw.config.get('wgServer').replace(/^\/\//, '') : undefined
			});
		mw.util.addPortletLink(
			'p-tb',
			title.toString(),
			'⌗ CropTool',
			't-crop',
			'Crop this image');
	});
}