User:Granada/common.js

From Wikimedia Commons, the free media repository
Jump to navigation Jump to search
Note: After saving, you have to bypass your browser's cache to see the changes. Internet Explorer: press Ctrl-F5, Mozilla: hold down Shift while clicking Reload (or press Ctrl-Shift-R), Opera/Konqueror: press F5, Safari: hold down Shift + Alt while clicking Reload, Chrome: hold down Shift while clicking Reload.
////////// tab with Jeffrey's Image Metadata Viewer //////////
/*global mw, $*/
/*jshint curly:false */

$(document).ready(function() {
	if (mw.config.get('wgNamespaceNumber') !== 6 || mw.config.get('wgAction') !== "view" || !document.getElementById('file')) return;
	var $link = $('.fullImageLink a[class!="mw-thumbnail-link"]'),
		$image = $link.find('img'),
		imageurl = $link.attr('href');

	if (imageurl === undefined || $image.length < 1) return; // No preview image, e.g. for large PNGs or video

	if (imageurl.substring(0, 2) == '//') 
		imageurl = 'https:' + imageurl;
	mw.util.addPortletLink('p-cactions', 'http://exif.regex.info/exif.cgi?url=' + encodeURIComponent(imageurl), 'Jeffrey s Image Metadata Viewer', 'ca-Jeffrey', null);
});
importScript("User:The Photographer/QICvote.js");