User contributions for Alex
Jump to navigation
Jump to search
13 October 2024
- 02:4602:46, 13 October 2024 diff hist +9,684 N MediaWiki:Gadget-relativetime.js Created page with "// Don't load CommentsInLocalTime for namespaces it is disabled for. if ( [-1, 0, 8].indexOf(mw.config.get("wgNamespaceNumber")) === -1 ) { // w:en:User:Mxn/CommentsInLocalTime // en.wikipedia.org/wiki/User:Mxn/CommentsInLocalTime.js /** * Comments in local time * User:Mxn/CommentsInLocalTime * * Adjust timestamps in comment signatures to use easy-to-understand, relative * local time instead of absolute UTC time. * * Inspired by [[Wikipedia:C..."
- 02:4602:46, 13 October 2024 diff hist +378 N MediaWiki:Gadget-utcclock.css Created page with "→Account for the larger font size adding 0.1em to height unless padding-top * is adjusted by the same amount.: →#p-personal is for being specific enough: #p-personal #utcdate { padding-top: 0.4em; } →Originally in the .js file since some wikis loaded the js directly without * the accompanying .css file: #utcdate a { font-weight: bolder; font-size: 120%; }" current
- 02:4502:45, 13 October 2024 diff hist +1,988 N MediaWiki:Gadget-utcclock.js Created page with "→* * Adapted from https://www.mediawiki.org/w/index.php?title=MediaWiki:Gadget-UTCLiveClock.js: ( function () { function padWithZeroes( num ) { // Pad a number with zeroes. The number must be an integer where // 0 <= num < 100. return num < 10 ? '0' + num.toString() : num.toString(); } function showTime( $target ) { var now = new Date(); // Set the time. var hh = now.getUTCHours(); var mm = now.getUTCMinutes(); var time = padWithZeroes( hh ) + ':' + pad..."
- 02:4502:45, 13 October 2024 diff hist +903 N MediaWiki:Gadget-skinTogglesMobile.css Created page with ".mw-ui-icon-portletlink-wgl-darkmode-toggle { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ctitle%3E lightbulb %3C/title%3E%3Cpath fill='%2354595d' d='M8 19a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-1H8zm9-12a7 7 0 1 0-12 4.9S7 14 7 15v1a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-1c0-1 2-3.1 2-3.1A7 7 0 0 0 17 7z'/%3E%3C/svg%3E"); } body.wgl-theme-dark .mw-ui-icon-portletlink-wgl-darkmode-toggle, body.wgl-t..."
- 02:4502:45, 13 October 2024 diff hist +1,539 N MediaWiki:Gadget-skinTogglesMobile.js Created page with "→* * Toggles for skin cookies on mobile * * @author JaydenKieran *: const DARK_COOKIE = 'darkmode'; var currentDark = $.cookie('theme') === 'dark' || ($.cookie('theme') == null && $.cookie(DARK_COOKIE) === 'true'), darkPortletLink; var self = { init: function () { darkPortletLink = mw.util.addPortletLink( 'p-personal', '#', (currentDark ? 'Light' : 'Dark') + ' mode', 'wgl-darkmode-toggle', 'Toggle ' + (currentDark ? 'light' : 'dark') + ' mo..."
- 02:4402:44, 13 October 2024 diff hist +874 N MediaWiki:Gadget-skinToggles-prompt.css Created page with "→* Based on OOUI's *: →Prompt: .rsw-color-scheme-prompt { position: absolute; border: 1px solid var(--ooui-interface-border); border-radius: 2px; filter: drop-shadow(0 2px 1px rgba(0,0,0,0.3)); background-color: var(--ooui-interface); display: flex; flex-direction: column; z-index: 100; line-height: 1.42857143em; padding: 0px 12px; width: 300px; box-sizing: border-box; } →Arrow (border): .rsw-color-scheme-prompt:before { content: ''; position: ab..." current
- 02:4402:44, 13 October 2024 diff hist +1,734 N 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..."
- 02:4402:44, 13 October 2024 diff hist +9,747 N MediaWiki:Gadget-skinToggles.css Created page with "#pt-theme-toggles .oo-ui-icon-advanced, #pt-fixed-width .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 { font-size: .9em; padding: 1em 2em 1.5em; }..."
- 02:4302:43, 13 October 2024 diff hist +9,554 N MediaWiki:Gadget-skinTogglesNew.js Created page with "→* * Handles the full-width toggle, dark mode toggle, and other appearance-related * toggles on the page. * * @author Gaz Lloyd * @author Jayden *: ;(function($, mw, rs){ var DARK_COOKIE = 'darkmode', THEME_COOKIE = 'theme', FLOORNUMBER_LS = 'floornumber_display', theme = ($.cookie('theme') !== null) ? $.cookie('theme') : (($.cookie(DARK_COOKIE) === 'true') ? 'dark' : 'light'), fixedWidthEnabled = $.cookie('readermode') === 'true', currentFloornumb..."
- 02:3902:39, 13 October 2024 diff hist +11,479 N 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..."
- 02:3902:39, 13 October 2024 diff hist +951 N 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..."
- 02:3902:39, 13 October 2024 diff hist +452 N 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' ); }); }"
- 02:3802:38, 13 October 2024 diff hist +1,627 N 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..."
- 02:3802:38, 13 October 2024 diff hist +13,277 N MediaWiki:Gadget-livePricesMMG-core.js Created page with "// // TODO: Do I just do something kind of dumb like use an object here for constant lookup? EXEMPT_FROM_TAX = [ 'Old school bond', 'Chisel', 'Gardening trowel', 'Glassblowing pipe', 'Hammer', 'Needle', 'Pestle and mortar', 'Rake', 'Saw', 'Secateurs', 'Seed dibber', 'Shears', 'Spade', 'Watering can (0)' ]; // Tax is never higher than 5m per item MAX_TAX_AMOUNT = 5000000; MMG_SMW_DATA_ENDPOINT = "https://oldschool.runescape.wiki/api.php?acti..."
- 02:3702:37, 13 October 2024 diff hist +110 N MediaWiki:Gadget-livePricesMMG.js Created page with "$(function () { if ($('.mmg-list-table').length) { mw.loader.load( 'ext.gadget.livePricesMMG-core' ); } })" current
- 02:3702:37, 13 October 2024 diff hist +3,107 N MediaWiki:Gadget-fightcaverotations-core.js Created page with "// This gadget updates the predicted rotation times on TzHaar Fight Cave/Rotations. Made by Gau Cho, but it was Fjara's idea const ROTATION_CYCLE = 16 function mod(a, n) { return a - (n * Math.floor(a/n)); } function getMinutesFromMidnight(time) { // Gets minutes from UTC midnight return time.getUTCHours()*60 + time.getUTCMinutes() } function formatTime(time) { // Formats time (using the local timezone) return time.getHours() + ':' + ('0' + ti..."
- 02:3702:37, 13 October 2024 diff hist +117 N MediaWiki:Gadget-fightcaverotations.js Created page with "$(function () { if ( $('#rotation-table').length ) { mw.loader.load( 'ext.gadget.fightcaverotations-core' ); } })" current
- 02:3702:37, 13 October 2024 diff hist +201 N MediaWiki:Gadget-mmgkc.css Created page with ".mmg-kph-div { max-width: 35em; } .mmg-kph-div .oo-ui-fieldLayout-header > .oo-ui-labelElement-label { font-weight: bold; } .mmg-kph-selector-field .oo-ui-inputWidget-input { text-align: center; }" current
- 02:3602:36, 13 October 2024 diff hist +4,737 N MediaWiki:Gadget-mmgkc-core.js Created page with "// Gets and sets items in local storage for the KPH amount // This allows for repeat visits to use the same KPH. // KPH is saved in local storage with the key "{Subpage name}-mmg-kph" // For ex. "Money making guide/Drinking irresponsibly" would go to the key "Drinking irresponsibly-mmg-kph" // If the page is NOT a subpage, we will not save LS. This might be confusing but is preferable to all TL pages using the same LS key. function parseMmgFloat(x) { var _x = parseFloa..."
- 02:3602:36, 13 October 2024 diff hist +114 N MediaWiki:Gadget-mmgkc.js Created page with "$(function () { if ($('.mmg-table.mmg-isperkill').length) { mw.loader.load( 'ext.gadget.mmgkc-core' ); } })" current
- 02:3602:36, 13 October 2024 diff hist +1,090 N MediaWiki:Gadget-dropDisplay.css Created page with "→Vertical align of the table headers: table.item-drops.filterable th { line-height: 2.3em; } →Show/hide members item column and (m) tag after name: table.item-drops.filterable.rsw-dropsline-hidemembers tr.members-item, table.item-drops.filterable.rsw-dropsline-hidememcol tr .members-column { display: none; } table.item-drops.filterable tr td.item-col sub[title="Members only"] { display: none; } table.item-drops.filterable.rsw-dropsline-hidememcol tr td.item-c..."
- 02:3502:35, 13 October 2024 diff hist +5,628 N MediaWiki:Gadget-dropDisplay-core.js Created page with "'use strict'; var userSettings, settingsName = 'rsw-drop-display-settings', defaultSettings = {_ratedisp: 2, _valcoldisp: 1}; // grabs settings from localstorage (or defaults if not supported) function getSettings(){ var settings = {}; if (rswiki.hasLocalStorage()) { try { settings = JSON.parse(localStorage.getItem(settingsName)); } catch (err) { settings = {}; } if (settings === null) { settings = {}; } } userSettings = $.extend({}, defaultSe..."
- 02:3502:35, 13 October 2024 diff hist +120 N MediaWiki:Gadget-dropDisplay.js Created page with "$(function () { if ($('table.item-drops.filterable').length) { mw.loader.load( 'ext.gadget.dropDisplay-core' ); } })"
- 02:3502:35, 13 October 2024 diff hist +914 N MediaWiki:Gadget-calculatorNS.js Created page with "→* * Adds a link to the main calculators directory to every calculator namespace page * in the same place as other subpage links (creates the element if required) * * @author Gaz Lloyd: $(function () { if (mw.config.get('wgNamespaceNumber') !== 116) { return; } function init() { // duplication prevention if ($('#contentSub #mw-content-subtitle .subpages .calculatorDirectoryLink').length) return; var link = $('<a>') .attr({ href: mw.util.g..."
- 02:3402:34, 13 October 2024 diff hist +2,953 N MediaWiki:Gadget-infoboxQty.js Created page with "/** * Infobox quantity script * Adds a number input box next to specific numbers in tables * Primary use case: the price in Infobox Item * * TODO: add infobox monster support (for what?) * * USAGE: * <td><span class="infobox-quantity" data-val-each="100" data-value="1"><span class="infobox-quantity-replace">100</span> coins</span></td> * Everything inside the td should be wrapped in the outer span, which has class=infobox-quantity and attr data-val-each=(value..."
- 02:3402:34, 13 October 2024 diff hist +3,053 N MediaWiki:Gadget-calc.css Created page with ".jcConfig { display: none; } .jcTable { margin: 0 !important; } .jcTable th { text-align: left !important; } .jcSubmit img { margin: 0 auto; } div > .jcTable .jsCalc-field.oo-ui-fieldLayout:before, div > .jcTable .jsCalc-field.oo-ui-fieldLayout:after, div > .jcTable .jsCalc-group.oo-ui-layout:before, div > .jcTable .jsCalc-group.oo-ui-layout:after { display: none; } div > .jcTable .jsCalc-group.oo-ui-layout:before, div > .jcTable .jsCalc-group.oo-ui-layout:a..."
- 02:3402:34, 13 October 2024 diff hist +77,081 N MediaWiki:Gadget-calc-core.js Created page with "/** * Calc script for RuneScape Wiki * * MAIN SCRIPT https://runescape.wiki/w/MediaWiki:Gadget-calc.js * https://runescape.wiki/w/MediaWiki:Gadget-calc.css * DUPLICATE TO https://oldschool.runescape.wiki/w/MediaWiki:Gadget-calc.js * https://oldschool.runescape.wiki/w/MediaWiki:Gadget-calc.css * make sure to update the hiscores URL for OSRS * * This script exposes the following hooks, accessible via `mw.hook`: * 1. 'rscalc.setupComplete' - Fires when..."
- 02:3402:34, 13 October 2024 diff hist +95 N MediaWiki:Gadget-calc.js Created page with "$(function () { if ($('.jcConfig').length) { mw.loader.load( 'ext.gadget.calc-core' ); } })"
- 02:3302:33, 13 October 2024 diff hist +3,045 N MediaWiki:Gadget-articlefeedback-tools.js Created page with "→* <nowiki> * Secondary gadget for the wiki article feedback feature, which runs solely on * pages that have the feedback wrapper (talk pages). It allows people to * mark feedback as "resolved". * * @author Jayden: var conf = mw.config.get([ 'wgPageName' ]), main = { →* * Startup method: init: function () { var wrappers = $('.gloop-feedback-wrapper'); // Loop through all of the feedback..."
- 02:3302:33, 13 October 2024 diff hist +875 N MediaWiki:Gadget-articlefeedback.css Created page with ".wgl-feedback-trigger { position: fixed; bottom: 10px; right: 10px; width: 40px; height: 40px; background: #363636; border-radius: 2em; box-shadow: 5px 4px 6px -6px #000000; display: flex; justify-content: center; align-items: center; color: #b3b3b3; cursor: pointer; transition: background 0.5s ease; } .wgl-feedback-container { font-size: .5em; display: inline-block; position: relative; top: -7px; right: -20px;..."
- 02:3302:33, 13 October 2024 diff hist +10,647 N MediaWiki:Gadget-articlefeedback-core.js Created page with "→* <nowiki> * Gadget for the wiki article feedback feature. * @author Jayden: 'use strict'; (function($, mw){ var conf = mw.config.get([ 'wgNamespaceNumber', 'wgTitle', 'wgAction', 'wgArticleId', 'wgUserGroups' ]), self = { // Constants API_ENDPOINT: 'https://api.weirdgloop.org/wiki/feedback', RESTRICTED_PAGES: [ // List of pages where..."
- 02:3202:32, 13 October 2024 diff hist +368 N MediaWiki:Gadget-articlefeedback.js Created page with "// <nowiki> if (mw.config.get('wgNamespaceNumber') === 0 && mw.config.get('wgAction') === 'view' && mw.config.get('wgArticleId') > 0) { mw.loader.load( 'ext.gadget.articlefeedback-core' ); } if (mw.config.get('wgUserGroups').includes('autoconfirmed') && $('.gloop-feedback-wrapper').length > 0) { mw.loader.load( 'ext.gadget.articlefeedback-tools' ); } // </nowiki>"
- 02:3202:32, 13 October 2024 diff hist +281 N MediaWiki:Gadget-tooltipPopup.css Created page with ".add-tooltip-popup { position: relative; } .add-tooltip-popup .title { position: absolute; top: 20px; background: var(--body-light); padding: 4px; border: 1px solid var(--body-border); box-shadow: 0 0.25rem 0.35rem -0.25rem rgb(0 0 0 / 10%); white-space: nowrap; }" current
- 02:3102:31, 13 October 2024 diff hist +851 N MediaWiki:Gadget-tooltipPopup-core.js Created page with "// Adapted from // https://stackoverflow.com/questions/12539006/tooltips-for-mobile-browsers function init() { $('.add-tooltip-popup').click(function () { var $title = $(this).find('.title'); if (!$title.length) { // Remove any existing tooltips $('.add-tooltip-popup .title').remove(); const tooltip = $(document.createElement('span')); tooltip.addClass('title').text($(this).attr('title')); tooltip.css('left', 0); $(thi..."
- 02:3102:31, 13 October 2024 diff hist +116 N MediaWiki:Gadget-tooltipPopup.js Created page with "$(function () { if ($('.add-tooltip-popup').length) { mw.loader.load( 'ext.gadget.tooltipPopup-core' ); } })" current
- 02:3102:31, 13 October 2024 diff hist +438 N MediaWiki:Gadget-smwlistsfull.css Created page with "#smw-list-full .oo-ui-fieldLayout-field, #smw-list-full .oo-ui-fieldLayout-header { margin-top: 5px; margin-bottom: 5px; } #smw-list-full .oo-ui-fieldLayout-header { width:12em; font-weight: bold; } #smw-list-full .oo-ui-fieldLayout-body { display: flow; } #smw-list-full .oo-ui-buttonElement { margin-top: 1rem; } #smw-list-full .oo-ui-inputWidget { width: 30%; } .smw-list-error { font-size: larger; color: #d33; }" current
- 02:3002:30, 13 October 2024 diff hist +3,693 N MediaWiki:Gadget-smwlistsfull-core.js Created page with "// <nowiki> var SMW_TEMPLATES = [ { name: 'Drop sources (without RDT)', template: 'Drop sources', short: 'drops' }, { name: 'Drop sources', template: 'Drop sources', short: 'dropsrdt', extra_params: '|incrdt=y' }, { name: 'Store locations', template: 'Store locations list', short: 'stores' }, { name: 'Products', template: 'Uses material list', short: 'products' }, { name: 'Facilities', template: 'Uses facility list', short: 'facilities' }, { name: 'Tools', template..."
- 02:3002:30, 13 October 2024 diff hist +84 N MediaWiki:Gadget-smwlistsfull.js Created page with "if ($('#smw-list-full').length) { mw.loader.load('ext.gadget.smwlistsfull-core'); }" current
- 02:3002:30, 13 October 2024 diff hist +1,688 N 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-theme-dark .rs-wikisync-help .oo-ui-fieldLayout-body, body.wgl-theme-browntown .rs-wikisync-help .oo-ui-fieldLayout-body { border: 1px solid #fbc0ba; } body.wgl-theme-dark .rs-wikisync-help .oo-ui-fieldLayo..." current
- 02:2902:29, 13 October 2024 diff hist +17,162 N MediaWiki:Gadget-wikisync-core.js Created page with "→* * 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 CLASSES = { QC_ACTIVE: "qc-active", QC_INPUT: "qc-input", QC_ICON: "rs-qc-icon", }; var END..."
- 02:2902:29, 13 October 2024 diff hist +100 N MediaWiki:Gadget-wikisync.js Created page with "$(function () { if ($('.qc-active').length) { mw.loader.load( 'ext.gadget.wikisync-core' ); } })" current
- 02:2802:28, 13 October 2024 diff hist +1,688 N 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..." current
- 02:2802:28, 13 October 2024 diff hist +2,704 N 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..." current
- 02:2802:28, 13 October 2024 diff hist +7,638 N MediaWiki:Gadget-Charts-core.js Created page with "var DARKMODE_TEXT = (($('body.wgl-theme-browntown').length) ? '#f4eaea' : '#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) retur..."
- 02:2602:26, 13 October 2024 diff hist +109 N MediaWiki:Gadget-Charts.js Created page with "$(function () { if ($( '.rsw-chartjs-config' ).length) { mw.loader.load( 'ext.gadget.Charts-core' ); } })"
- 02:2602:26, 13 October 2024 diff hist +2,024 N 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..."
- 02:2502:25, 13 October 2024 diff hist +18,507 N MediaWiki:Gadget-checkboxList-core.js Created page with "→* * Adds support for checkbox lists ([[Template:Checklist]]) * * Examples/Tests: <https://rs.wiki/User:Cqm/Scrapbook_4> * * History: * - 1.0: Original implementation - Cqm: /* * DATA STORAGE STRUCTURE * ---------------------- * * In its raw, uncompressed format, the stored data is as follows: * { * hashedPageName1: [ * [0, 1, 0, 1, 0, 1], * [1, 0, 1, 0, 1, 0], * [0, 0, 0, 0, 0, 0] * ], * hashedPageName2: [ *..."
- 02:2502:25, 13 October 2024 diff hist +126 N MediaWiki:Gadget-checkboxList.js Created page with "$(function () { if ($("ul.checklist, div.checklist > ul").length) { mw.loader.load( 'ext.gadget.checkboxList-core' ); } })"
- 02:2402:24, 13 October 2024 diff hist +4,841 N MediaWiki:Gadget-countdown.js Created page with "→* * Countdown * * @version 2.1 * * @author Pecoes <https://c.wikia.com/wiki/User:Pecoes> * @author Asaba <https://dev.wikia.com/wiki/User:Asaba> * * Version 1 authors: * - Splarka <https://c.wikia.com/wiki/User:Splarka> * - Eladkse <https://c.wikia.com/wiki/User:Eladkse> * * documentation and examples at: * <https://dev.wikia.com/wiki/Countdown>: /*jshint jquery:true, browser:true, devel:true, camelcase:true, curly:false, undef:true, bitwise:true, eqeq..."
- 02:2302:23, 13 October 2024 diff hist +141 N MediaWiki:Gadget-Username.js Created page with "→* * Script for {{USERNAME}}: if (mw.config.get("wgUserName")) $(function(){ $('.insertusername').text(mw.config.get("wgUserName")) });" current