MediaWiki:Common.js

From Life After BOB Wiki
Revision as of 06:52, 13 June 2021 by Xu6ing (talk | contribs)
Jump to navigation Jump to search

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
/* Any JavaScript here will be loaded for all users on every page load. */

//open external links in new tab


	$( '.external' ).click( function (e) {
                e.preventDefault(); 
                console.log($(this).attr('href'));
                var url = $(this).attr('href'); 
                window.open(url, '_blank');
	} );

//hover

$('.fc-img').mouseenter(function(){
   $(this).parent().css('background','rgba(255, 255, 255, 0.9)')
})

$('.fc-img').parent().mouseenter(function(){
   $(this).css('background','rgba(255, 255, 255, 0.9)')
})


$('.fc-img').mouseleave(function(){
   $(this).parent().css('background','none')
})

$('.fc-img').parent().mouseleave(function(){
   $(this).css('background','none')
})

var imageList = $('.fc-img').children().children();
console.log(imageList);
var name;
for (var i = 0; i<imageList.length; i++){
  var w = imageList[i].dataset.fileWidth;
  var h = imageList[i].dataset.fileHeight
  if(w-h>0){
    name = imageList[i].className
    $('.'+name).css('height','100%');
  }

console.log(imageList[i].dataset.fileWidth+","+imageList[i].dataset.fileHeight);

}
           

            

mw.loader.using( 'mediawiki.api', function () { 
var random;
var params = {
		action: 'query',
		format: 'json',
		list: 'random',
		rnlimit: '1',
                rnnamespace:'0'
	},
	api = new mw.Api();

api.get( params ).done( function ( data ) {
	var randoms = data.query.random,
		r;
	for ( r in randoms ) {
		console.log( randoms[ r ].title);
	}

        random = randoms[0].title;
        
        var randomString = "<a href='http://lifeafterbob.wiki/view/"+randoms[0].title+"'>"+randoms[0].title+"</a>"
        $("#randompage").append(randomString);
          var newparams = {
	action: 'parse',
	page: randoms[0].title,
	format: 'json'
}, api = new mw.Api();

api.get(newparams).done(function(data){
if (!data.error)
        {
            var markup = data.parse.text["*"];
            if (typeof markup !== "undefined")
            {
                $("#entry").text(entry).show();
                var blurb = $('<div id="articleText"></div>').html(markup);

                // remove links as they will not work
                blurb.find('a').each(function() { $(this).replaceWith($(this).html()); });

                // remove any references
                blurb.find('sup').remove();

                // remove cite error
                blurb.find('.mw-ext-cite-error').remove();
                $('#article').html($(blurb).find('p'));

                $("#article").append(link);
                // console.log(markup);
            }
        }
});
});



});