You do not have permission to edit this page, for the following reasons:
You can view and copy the source of this page.
/**
*Makes credits closable
*/
mw.loader.using(['jquery'], function () {
$(document).on('click', '#worldbuildercredits .close-btn', function() {
$('#worldbuildercredits').hide();
});
});
/**
* Adds an AI Artwork button to the image uploader page
*/
$(function() {
if (mw.config.get('wgCanonicalSpecialPageName') === 'Upload') {
// checkbox element
var checkboxHtml = '<td class="mw-label"><label for="aiCheckbox">AI Artwork?: </label></td>'
+ '<td class="mw-input"><input type="checkbox" id="aiCheckbox"></td>';
// Insert the checkbox element after the Licensing row
$('td.mw-label label[for="wpLicense"]').closest('tr').after('<tr>' + checkboxHtml + '</tr>');
// Update the destination filename when the checkbox value changes
000
1:0
Return to MediaWiki:Common.js.