All public logs
Jump to navigation
Jump to search
Combined display of all available logs of Old School Near-Reality Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)- 19:40, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-skinTogglesNew-prompt.js (Created page with "* * Prompts that dark mode color scheme is available. * * @author Elessar2 * @author Gaz Lloyd * @author JaydenKieran * @author TehKittyCat * * Positioning logic adapted from MediaWiki:Gadget-rsnews.js.: var $portletLink = $('#pt-skin-toggles'), $prompt function init() { $prompt = $('<div>').addClass('rsw-color-scheme-prompt').css( 'display', 'none' ).append( $('<p>').css({ 'font-size': '0.75em' }).html('Your device...")
- 19:31, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-skinToggles.css (Created page with "<pre>: #pt-skin-toggles .oo-ui-icon-advanced { width: 15px; min-width: 15px; height: 14px; background-size: 14px; display: block; background-repeat: no-repeat; background-image is in vector.css: opacity: 1; margin-bottom: -2px; } .rsw-skin-toggle-popup .oo-ui-window-frame { width: 440px !important; } .rsw-skin-toggle-popup .appearance-modal { background-color: var(--body-main); border-color: var(--body-border);...")
- 19:28, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-skinTogglesNew.js (Created page with "* * Toggles for skin cookies * * @author Gaz Lloyd * @author JaydenKieran *: ;(function($, mw, rs){ var READER_COOKIE = 'readermode', DARK_COOKIE = 'darkmode', DARK_COOKIE_CONDITIONAL = 'darkmode_conditional', STICKY_HEADER_COOKIE = 'stickyheader', FLOORNUMBER_LS = 'floornumber_display', currentReader = $.cookie(READER_COOKIE) === 'true', currentDark = $.cookie(DARK_COOKIE) === 'true', currentDarkConditional = $.cookie(DARK_COOKIE_CONDITIONAL)...")
- 19:28, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-code-snippets.js (Created page with "*<nowiki> * Gadget that loads a couple of snippets for easier access to commonly copy/pasted templates and sections * Authors: ** Joeytje50: $(function() { var today = new Date().toLocaleString('en-GB', {day: 'numeric', month: 'long', year: 'numeric', timeZone: 'UTC'}); var pagename = mw.config.get('wgTitle'); var preloadMsgs = [ 'NPC', 'equipment', 'item', 'location', 'monster', 'scenery', 'shop', //'navbox', //'navbox-oneline', //'navbox...")
- 19:28, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-editCount.js (Created page with "* * Adds total edit count on User, User talk and Contributions as a PortletLink * @author Jr_Mime: if (mw.config.get('wgNamespaceNumber') === 2 || mw.config.get('wgNamespaceNumber') === 3 || mw.config.get("wgCanonicalSpecialPageName") == "Contributions") { $(function () { var user = mw.config.get('wgRelevantUserName'); mw.util.addPortletLink( 'p-namespaces', mw.util.getUrl('Special:EditCount/' + user), '.. edits', 'ca-nstab-editcount', 'Click...")
- 19:27, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-contributions.js (Created page with "* * Adds a contribution link on User, User talk and Contributions as a PortletLink * @author Jr_Mime: if (mw.config.get('wgNamespaceNumber') === 2 || mw.config.get('wgNamespaceNumber') === 3) { $(function () { mw.util.addPortletLink( 'p-namespaces', mw.util.getUrl('Special:Contributions/' + mw.config.get('wgRelevantUserName')), 'Contributions', 'ca-nstab-contributions', 'Click to open the user\'s contributions' ); }); }")
- 19:27, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-autowelcome.js (Created page with "/** * autowelcome.js - from https://runescape.wiki/w/User:Quarenon/autowelcome.js * * Automatically insert the welcome notice code when editing a new user talk page. * * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope th...")
- 19:26, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-scribunto-console.js (Created page with "$(function () { if ($('#mw-scribunto-console').length) { mw.loader.load('ext.gadget.scribunto-console-core') } })")
- 19:26, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-table-csv.js (Created page with "$(function () { function cellToString(cell) { var $cell = $(cell).clone(); $cell.find('a').replaceWith(function(){ var $e = $(this); if ($e.text() === '') { //the handles normal linked images return $e.attr('title'); } return $e.text(); }); $cell.find('img').replaceWith(function(){ //any extra images without a link return $(this).attr('alt') }) return '"\''+$cell.text().trim()+'"'; } function sanitisePagename() { var pn = mw.config.g...")
- 19:26, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-ezcopy.css (Created page with ".rsw-ezcopy-container { display: inline-block; font-family: 'IBM Plex Sans','Helvetica Neue','Arial',sans-serif; margin-left: 0.2em; user-select: none; } .rsw-ezcopy-container .rsw-ezcopy-button { display: inline-block; height: 2em; width: 4em; vertical-align: middle; text-align: center; font-size: 0.4em; border: 2px solid var(--body-border); background: var(--body-dark); font-weight: normal; cursor: pointer; line-height: 1em; } .rsw-ezcopy-...")
- 19:25, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-ezcopy.js (Created page with "$(function () { function try_copy(x, $el) { var txt = document.createElement('textarea'), $txt = $(txt); $txt.text(x).css({ position: 'fixed', top: 0, left: 0, width: '2em', heigh: '2em', padding: 0, border: 'none', outline: 'none', boxShadow: 'none', background: 'transparent' }).appendTo('body'); txt.select(); try { document.execCommand('copy'); //mw.notify('Copied "'+x+'" to the clipboard', {tag: 'ezcopy'}); $el.addClas...")
- 19:25, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-oswf-core.js (Created page with "var showText = 'Get started with this task', hideText = 'Hide additional info', showTitle = 'Show the guidance for this task', hideTitle = 'Hide the guidance for this task'; function init() { $('.oswf-guidance').each(function(i,e){ var $this = $(e), $content, toggleButton, showing = false; $content = $('<div>').append($this.contents()); $content.hide(); toggleButton = new OO.ui.ButtonWidget({ icon: 'expand', title: showTitle, label: showTex...")
- 19:25, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-oswf.js (Created page with "// <nowiki> $(function () { if ( $('.oswf-guidance').length ) { mw.loader.load( 'ext.gadget.oswf-core' ); } }) // </nowiki>")
- 19:25, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-Message-names.js (Created page with "* Add a toolboox link to display the current page with MediaWiki message names replacing their text * Adapted from https://en.wikipedia.org/wiki/MediaWiki:Gadget-ShowMessageNames.js: $(function() { mw.util.addPortletLink( 'p-tb', location.href.replace( location.hash, '' ) + ( location.search ? '&' : '?' ) + 'uselang=qqx', 'Message names', 't-messagenames', 'Display the current page with MediaWiki message names replacing their text' ); });")
- 19:24, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-QDmodal.css (Created page with "CSS for MediaWiki:Gadget-QDmodal.js: .qdmodal-no-scroll { overflow: hidden; } .qdmodal-container { background-color: hsla(0, 0%, 0%, 0.4); font-size: 14px; line-height: 22px; display: flex; justify-content: center; align-items: center; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 101; #p-personal has z-index of 100: } .qdmodal { color: #36414f; background-color: #e2dbc8;...")
- 19:24, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-QuickDiff.js (Created page with "<nowiki> QuickDiff - quickly view any diff link Modified to remove Wikia-specific i18n code, relies on MediaWiki:Gadget-QDmodal.js @author OneTwoThreeFall @source <https://dev.fandom.com/wiki/QuickDiff> @source <https://dev.fandom.com/wiki/MediaWiki:QuickDiff/code.js>: jslint browser, long: global jQuery, mediaWiki, dev: $(function () { "use strict"; // double-run protection if (window.quickDiffLoaded) { return...")
- 19:24, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-QDmodal.js (Created page with "<nowiki> QDmodal - flexbox-based modal library CSS located at MediaWiki:Gadget-QDmodal.css @author OneTwoThreeFall @source <https://dev.fandom.com/wiki/QDmodal> @source <https://dev.fandom.com/wiki/MediaWiki:QDmodal.js>: jslint browser, long, this: global jQuery, mediaWiki: $(function () { "use strict"; var version = 20180212; if (mw.libs.QDmodal && mw.libs.QDmodal.version >= version) { return; } var...")
- 19:23, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-LazyAdminTools-core.js (Created page with "// LazyAdminTools: easy delete, rollback, and block buttons for admins // @author Jr Mime // @author Iiii_I_I_I $(function () { if (mw.config.get("wgCanonicalSpecialPageName") != "Contributions") return; var username = mw.config.get("wgPageName").split("/")[1], lazyAdminTools = {}; // Fieldset maker lazyAdminTools.init = function () { var blockSection = new OO.ui.ActionFieldLayout( new OO.ui.ComboBoxInputWidget({...")
- 19:22, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-LazyAdminTools.js (Created page with "// <nowiki> if (mw.config.get('wgCanonicalSpecialPageName') == 'Contributions') { mw.loader.load('ext.gadget.LazyAdminTools-core') } // </nowiki>")
- 19:22, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-batchupload.js (Created page with "$(function(){ mw.util.addPortletLink( 'p-tb', '/w/RuneScape:Batch_Upload', 'Batch upload', 'pt-batch-upload', 'Upload many images at once', null, null ); });")
- 19:22, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-ReferenceTooltips.css (Created page with "See mw:Reference Tooltips * Original source: https://en.wikipedia.org/wiki/MediaWiki:Gadget-ReferenceTooltips.css * with modifications: .rt-tooltip { position: absolute; z-index: 100; max-width: 350px; background: var(--body-light); color: var(--text-color); font-size: 0.8125em; line-height: 1.5em; border: 1px solid var(--body-border); border-radius: 2px; box-shadow: 0 15px 45px -10px rgba(0, 0, 0, 0.3); overflow-wrap: break-word; } .rt-tooltip....")
- 19:21, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-ReferenceTooltips.js (Created page with "// See mw:Reference Tooltips // Source: https://en.wikipedia.org/wiki/MediaWiki:Gadget-ReferenceTooltips.js $( function () { // wiki settings var REF_LINK_SELECTOR = '.reference, a[href^="#CITEREF"]', COMMENTED_TEXT_CLASS = 'rt-commentedText', COMMENTED_TEXT_SELECTOR = ( COMMENTED_TEXT_CLASS ? '.' + COMMENTED_TEXT_CLASS + ', ' : '') + 'abbr[title]'; if ( !['', 'RuneScape'].includes(mw.config.get('wgCanonicalNamespace')) || $( REF_LINK_SELECTOR + ', ' + COMM...")
- 19:21, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-purge.js (Created page with "$(function () { function purgePage(e) { mw.notify("The page is now purging and will refresh when it is ready.", { title: 'Purging', tag: 'purge', autoHide: false }); (new mw.Api()).post({ action: 'purge', titles: mw.config.get('wgPageName') }).then(function(){ window.location.reload(); }, function(){ var uri = new mw.Uri(); uri.query.action = 'purge'; mw.notify($.parseHTML('Purging the page failed. Please try again or <a href="'+uri.toString()+...")
- 19:21, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-hotcat.js (Created page with "This imports the latest version of HotCat from Commons. HotCat is a gadget to make changes to categories much easier. Full documentation can be found at http://commons.wikimedia.org/wiki/Help:Gadget-HotCat: mw.loader.load( '//commons.wikimedia.org/w/index.php?title=MediaWiki:Gadget-HotCat.js&action=raw&ctype=text/javascript' );")
- 19:20, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-navboxToggle.js (Created page with "$(function () { var navtoggle = function () { if ($('.navbox.mw-collapsible').length) { var $arrow = $('<div>') .addClass('mw-ui-icon mw-ui-icon-mf-expand mw-ui-icon-element mw-ui-icon-small indicator mw-ui-icon-flush-left'); var $navigationText = $('<span>') .addClass('mw-headline') .text('Navigation'); var $toggleBar = $('<h2>') .attr('id', 'navbox-fake-collapsible-heading') .addClass('section-heading collapsible-heading') .append($a...")
- 19:20, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-toplinksDropdown.js (Created page with "* * De-clutters the personal links at the top by collecting them in a dropdown, * opened by hovering over your username - inspired by the Timeless skin * * @author Iiii_I_I_I: $(function() { var $talk = $('#pt-mytalk'), $contris = $('#pt-mycontris'), $watchlist = $('#pt-watchlist'), $prefs = $('#pt-preferences'), $logout = $('#pt-logout'); // new talk page message $('#pt-mytalk .mw-echo-alert').text('Talk'); // c...")
- 19:19, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-scribunto-console.css (Created page with ".mw-scribunto-console-fieldset .console-control { margin-right: 0.25rem; } .mw-scribunto-console-fieldset input.console-control[type="checkbox"] { margin-left: 0.25rem; }")
- 19:19, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-scribunto-console-core.js (Created page with "*<nowiki> * Gadget that loads a couple of snippets for the console on module pages * Authors: ** LapOnTheMoon ** Gaz Lloyd * * * The scribunto console is run by ext.scribunto.edit - https://github.com/wikimedia/mediawiki-extensions-Scribunto/blob/master/modules/ext.scribunto.edit.js: const FRAME_TEST = [ "local frame = {}", "function frame.getParent()", " local args = {", " -- Args go here as ['name'] = value,", " }", " return { args = args }",...")
- 19:18, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-crob.css (Created page with "#crob-img { background: url('images/Crob.gif') no-repeat; background-size: 150px; height: 168px; width: 158px; }")
- 19:18, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-crob.js (Created page with "$(function () { if ((mw.config.get('wgNamespaceNumber') != 0 && mw.config.get('wgNamespaceNumber') != 116) || mw.config.get('wgAction') != 'view') { return; } var data = { "Optimal quest guide": { "initial": "Getting tired of doing quests? Click me for some help.", "options": [ "Sure", "No thanks." ], "response": [ "Sorry, I changed my mind. Do them yourself.", "Why, are you playing Ironman Mode?" ] },...")
- 19:17, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-gadgetLinks.js (Created page with "// Add gadget links to the gadgets that are being defined on MediaWiki:Gadgets-definition $(function() { function gadgetLink(page) { return '<a href="/w/MediaWiki:Gadget-'+page+'" title="MediaWiki:Gadget-'+page+'">'+page+'</a>'; } $('.page-MediaWiki_Gadgets-definition #bodyContent ul li').not('#toc li').each(function() { var txt = this.innerHTML; var links = txt.replace(/([a-zA-Z0-9-]+)(\^\+\]\|)(.*)/, function(match, name, options, filelist) {...")
- 19:17, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-showAdvancedData.css (Created page with ".infobox .advanced-data { display: table-row; }")
- 19:17, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-defaultsummaries.js (Created page with "* Modified version of https://en.wikipedia.org/wiki/MediaWiki:Gadget-defaultsummaries.js: $(function() { var $summaryBox = $( '#wpSummary' ), $saveButton = $( '#wpSave' ), lastkey = 'rsw-defsum-last', uselastkey = 'rsw-defsum-uselast', hasls = false, minorSummaries = [ 'Fixed spelling', 'Correcting page layout', 'Revert vandalism', 'Reworded', 'Remove policy violation' ], articleSummaries = [ 'Expandin...")
- 19:16, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-sigreminder-core.js (Created page with "// <nowiki> $(function() { $('#wpSave').click(function (e) { var text = $('#wpTextbox1').val(), reminder = 'It looks like you forgot to sign your comment. You can sign by placing 4 tildes (~~\~~) to the end of your message.\nAre you sure you want to post it?'; if ( // don't trigger on minor edits $('#wpMinoredit').prop('checked') || // check for signature text.replace(/(<nowiki>.*?<\/nowiki>)/g, '').match('~~\~') |...")
- 19:16, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-sigreminder.js (Created page with "// <nowiki> var conf = mw.config.get([ 'wgAction', 'wgNamespaceNumber' ]); var editActions = ['edit', 'submit']; if (editActions.indexOf(conf.wgAction) > -1 && (conf.wgNamespaceNumber % 2 === 1 || conf.wgNamespaceNumber === 110)) { mw.loader.load( 'ext.gadget.sigreminder-core' ); }")
- 19:16, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-searchfocus.js (Created page with "* * https://en.wikipedia.org/wiki/MediaWiki:Gadget-searchFocus.js *: if ( mw.config.get( 'wgIsMainPage' ) ) { $( function () { $( '#searchInput' ).focus(); } ); }")
- 19:15, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-fileDownload.js (Created page with "* * Adds a download link to file pages * * @author Gaz Lloyd: $(function(){ if (!(mw.config.get('wgNamespaceNumber') === 6 && $('.fullMedia, .filehistory').length > 0)) { return; } function addLinks() { // underneath image - also replace filename with page title $('.fullMedia a.internal').after( ' (', $('<a>') .text('download') .addClass('fileDownload') .attr({ href: $('.fullMedia a.internal').attr('href'), download: mw.conf...")
- 19:14, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-dropdown.js (Created page with "* * add various useful links to the "More" dropdown menu * * References: * <https://www.mediawiki.org/wiki/ResourceLoader/Core_modules#addPortletLink> * <https://en.wikipedia.org/wiki/Help:Customizing_toolbars>: $( function () { var conf = mw.config.get([ 'wgPageName', 'wgNamespaceNumber', 'wgArticlePath' ]) if (conf.wgNamespaceNumber === -1) { return; // don't run on special pages } // link to the most recent diff à la Twinkle...")
- 19:13, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-newPage.js (Created page with "$(function () { var $button, $window; function createWindow(modal){ modal.content = new OO.ui.PanelLayout({ padded: true, expanded: false }); var pagenameInput = new OO.ui.TextInputWidget({placeholder: 'Full page name including namespace', type: 'text', id: 'gadget-newpage-pagename'}); var submitButton = new OO.ui.ButtonInputWidget({ label: 'Create', flags: ['primary', 'progressive']}); var cancelButton = new OO.ui.ButtonInputWidget({ label: 'Cancel', flags:...")
- 19:12, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-wikisync-core.css (Created page with ".rs-wikisync-help { margin: .5em 0 !important; } .rs-wikisync-help .oo-ui-fieldLayout-body { border: 1px solid #9f261e; border-radius: 2px; padding: 4px 8px; } .rs-wikisync-help .oo-ui-fieldLayout-header .oo-ui-labelElement-label { color: #9f261e; } body.wgl-darkmode .rs-wikisync-help .oo-ui-fieldLayout-body { border: 1px solid #fbc0ba; } body.wgl-darkmode .rs-wikisync-help .oo-ui-fieldLayout-header .oo-ui-labelElement-label { color: #fbc0ba; } /* unused - for...")
- 19:12, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-wikisync-core.js (Created page with "* <nowiki> * WikiSync: * - Utilises our WikiSync API, with data provided by users via RuneLite. * - Adds the ability to check a user's completed quests. * * Slightly adapted from https://runescape.wiki/w/MediaWiki:Gadget-questchecker-core.js * * @author Jayden * @author Andmcadams * @author Jakesterwars * @author Cook Me Plox * @author Lezed1 * @author Haidro: var QC_ACTIVATOR_CLASS = '.qc-active', QC_INPUT_CLASS = '.qc-input', ENDPOINTS = { osrs:...")
- 19:12, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-wikisync.js (Created page with "// <nowiki> $(function () { if ($('.qc-active').length) { mw.loader.load( 'ext.gadget.wikisync-core' ); } }) // </nowiki>")
- 19:11, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-sidebar-tracking.js (Created page with ";(function($, mw){ function trackSidebarClick(event) { var $e = $(event.currentTarget), pagename = mw.config.get('wgPageName'), href, click_type, data; href = $e.attr('href'); switch (event.which) { case 1: click_type = 'left'; if (!(event.altKey || event.ctrlKey || event.altKey || event.metaKey)) { $e.attr({'x-href': href, 'x-leftclicked':'1'}).removeAttr('href'); } break; case 2: click_type = 'middle'; b...")
- 19:11, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-navbox-tracking.js (Created page with ";(function($, mw){ if ($('.navbox').length <= 0) return; var LOADING = false; function trackNavboxClick(event) { var $e = $(event.currentTarget), pagename = mw.config.get('wgPageName'), href, navbox, link_type = ['link'], click_type, data; href = $e.attr('href'); navbox = $e.parents('.navbox[data-navbox-name]'); if (navbox.length<1) { // missing name, template not propagated - skip return; } navbox = navbox.attr('d...")
- 19:10, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-redirect-mobilediff.js (Created page with "* * Automatically redirect Special:MobileDiff to Special:Diff for desktop users: ;if (mw.config.get('wgCanonicalSpecialPageName') == 'MobileDiff') { var diff = mw.config.get('wgPageName').replace('Mobile', ''); var wgArticlePath = mw.config.get('wgArticlePath'); window.location.replace(wgArticlePath.replace('$1', diff)); }")
- 19:10, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-Charts-core.js (Created page with "var DARKMODE_TEXT = '#cbd9f4'; function RSWChart(i, dataElement) { var self = this; this.is_error = false; this.index = i; function error(t) { dataElement.removeClass('rsw-chartjs-config').addClass("rsw-chart-parsed rsw-chart-error").text(t); self.is_error = true; } function parseData() { console.log('parsing data for ' + self.index); if (self.is_error) return; var c = {}; console.log(dataElement....")
- 19:10, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-Charts.js (Created page with "// <nowiki> $(function () { if ($( '.rsw-chartjs-config' ).length) { mw.loader.load( 'ext.gadget.Charts-core' ); } }) // </nowiki>")
- 19:07, 3 October 2022 Jacmob talk contribs created page Template:Ctg/doc (Created page with "{{Documentation}} {{Invokes|Category handler}} Adds every category listed in the unnamed parameters to the page it is used on. This handler also includes built in sorting mechanics: * Pages that match the category name exactly will be sorted as <code><nowiki>[[Category:<category>| ]]</nowiki></code>, placing them at the front of the category. ** This rule also applies to titles that are simple plurals of each other; e.g. '''Rune''' and '''Runes''' * Pages that begin wi...")
- 19:07, 3 October 2022 Jacmob talk contribs created page Template:Ctg (Created page with "{{{{{|safesubst:}}}#invoke:Category handler|main}}<noinclude>{{/doc}}</noinclude>")
- 19:06, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-checkboxList.css (Created page with "CSS for MediaWiki:Gadget-checkboxList.js: Use with Template:Checklist: =========================== lighttable checklists ===========================: /* checklist will otherwise render anything floated to the right unclickable due to overlap; 300px is the width of infoboxes and default thumbnail size the first rule is the fallback for ancient browsers; the second rule keeps 350px space to the side, down to 1000px width of its co...")