সমললৈ যাওক

সদস্য:Kuldhar Rabha/common.js: বিভিন্ন সংশোধনসমূহৰ মাজৰ পাৰ্থক্য

ৱিকিউৎসৰ পৰা
Content deleted Content added
No edit summary
টেগ্‌: উলটিওৱা হৈছে
#Test
টেগ্‌: উলটিওৱা হৈছে
৩৬ নং শাৰী: ৩৬ নং শাৰী:
});
});


function checkContentForর(content) {
$(document).ready(function () {
var str = $("#firstHeading").text();
var patternOutsideTemplate = /র(?![^{]*\{\{বঙালী ৰ\}\})/;
if (str.includes("র") && !str.includes("{{বঙালী ৰ}}")) {
var matches = content.match(patternOutsideTemplate);
mw.notify("ইয়াত বঙালী ৰ লুকাই আছে", {type: "info"});
}
var bodytext = $(".mw-parser-output").text();
var isOnlyTemplate = /^\{\{বঙালী ৰ\}\}$/.test(content.trim());
if (bodytext.includes("র") && !bodytext.includes("{{বঙালী ৰ}}")) {

mw.notify("ইয়াত বঙালী ৰ লুকাই আছে", {type: "info"});
if (matches && !isOnlyTemplate) {
console.log("ইয়াত বঙালী ৰ লুকাই আছে");
}
}
}
});

// ব্যৱহাৰ
var pageContent = "{{বঙালী ৰ}}";
checkContentForর(pageContent);

০৯:১৬, ৮ জুন ২০২৪ৰ সংস্কৰণ

mw.loader.using(['mediawiki.util'], function() {
    $(document).ready(function() {
        if (mw.config.get('wgAction') === 'edit') {
            
            $('#editform').prepend('<div id="colorPickerContainer">' +
                                   '<input type="color" id="colorPicker">' +
                                   '<span id="colorCode">#000000</span></div>');

            
            var selectedColor = '#000000';

           
            $('#colorPicker').on('input', function() {
                selectedColor = $(this).val();
               
                $('#colorCode').text(selectedColor);
            });

            
            $('#colorCode').on('click', function() {
                navigator.clipboard.writeText(selectedColor).then(function() {
                    alert('ক’ড কপি কৰা হ’ল: ' + selectedColor);
                }).catch(function(err) {
                    console.error('Could not copy text: ', err);
                });
            });

            // প্ৰাক্‌দৰ্শন
            $('#wpPreview').on('click', function() {
                setTimeout(function() {
                    $('#wikiPreview').css('color', selectedColor);
                }, 500);
            });
        }
    });
});

$(document).ready(function () {
    var str = $("#firstHeading").text();
    if (str.includes("র") && !str.includes("{{বঙালী ৰ}}")) {
        mw.notify("ইয়াত বঙালী ৰ লুকাই আছে", {type: "info"});
    }
    
    var bodytext = $(".mw-parser-output").text();
    if (bodytext.includes("র") && !bodytext.includes("{{বঙালী ৰ}}")) {
        mw.notify("ইয়াত বঙালী ৰ লুকাই আছে", {type: "info"});
    }
});