മീഡിയവിക്കി:Common.js

അഭിപ്രായവേദി സംരംഭത്തിൽ നിന്ന്
14:01, 15 ജൂൺ 2026-നു ഉണ്ടായിരുന്ന രൂപം സൃഷ്ടിച്ചത്:- VijayanPN (സംവാദം | സംഭാവനകൾ)

ശ്രദ്ധിക്കുക: സേവ് ചെയ്തശേഷം മാറ്റങ്ങൾ കാണാനായി താങ്കൾക്ക് ബ്രൗസറിന്റെ കാഷെ ഒഴിവാക്കേണ്ടി വന്നേക്കാം.

  • ഫയർഫോക്സ് / സഫാരി: Reload ബട്ടൺ അമർത്തുമ്പോൾ Shift കീ അമർത്തി പിടിക്കുകയോ, Ctrl-F5 അല്ലെങ്കിൽ Ctrl-R (മാക്കിന്റോഷിൽ ⌘-R ) എന്ന് ഒരുമിച്ച് അമർത്തുകയോ ചെയ്യുക
  • ഗൂഗിൾ ക്രോം: Ctrl-Shift-R (മാക്കിന്റോഷിൽ ⌘-Shift-R ) അമർത്തുക
  • ഇന്റർനെറ്റ് എക്സ്പ്ലോറർ: Refresh ബട്ടൺ അമർത്തുമ്പോൾ Ctrl കീ അമർത്തിപിടിക്കുക. അല്ലെങ്കിൽ Ctrl-F5 അമർത്തുക
  • ഓപ്പറ: Menu → Settings എടുക്കുക (മാക്കിൽ Opera → Preferences) എന്നിട്ട് Privacy & security → Clear browsing data → Cached images and files ചെയ്യുക.
/* ഇവിടെ നൽകുന്ന ജാവാസ്ക്രിപ്റ്റ് എല്ലാ ഉപയോക്താക്കൾക്കും, എല്ലാ താളുകളിലും പ്രവർത്തിക്കുന്നതായിരിക്കും */
// Show display titles in category pages instead of page names
$(document).ready(function() {
    if ($('.mw-category').length) {
        $('.mw-category li a').each(function() {
            var pageTitle = $(this).attr('title');
            if (pageTitle) {
                // This will use the page's actual display title
                // MediaWiki automatically uses DISPLAYTITLE in title attribute
                $(this).text(pageTitle);
            }
        });
    }
});


/* ==========================================================================
   ANONYMOUS USERS ONLY: HIDE PAGE TABS (View Source, History etc.)
   ========================================================================== */
(function () {
    // ഉപയോക്താവ് ലോഗിൻ ചെയ്തിട്ടില്ലെങ്കിൽ (അനോണിമസ് ആണെങ്കിൽ)
    if (mw.config.get('wgUserId') === null) {
        // ഡോക്യുമെന്റ് ലോഡ് ആയതിനു ശേഷം റൺ ചെയ്യുക
        $(document).ready(function () {
            // പേജ് ടാബുകൾ അടങ്ങിയ കണ്ടെയ്നർ പൂർണ്ണമായി നീക്കം ചെയ്യുക
            $('#mw-page-header-links').remove();
            // 'From AbhiprayaVedi' എന്ന ലൈൻ നീക്കം ചെയ്യുക
            $('#siteSub').remove();
        });
    }
}());
"https://abhiprayavedi.org/index.php?title=മീഡിയവിക്കി:Common.js&oldid=2079" എന്ന താളിൽനിന്ന് ശേഖരിച്ചത്