Difference between revisions of "MediaWiki:Common.js"

From Life After BOB Wiki
Jump to navigation Jump to search
Line 34: Line 34:
 
var name;
 
var name;
 
for (var i = 0; i<imageList.length; i++){
 
for (var i = 0; i<imageList.length; i++){
   if(imageList[i].dataset.fileWidth>imageList[i].dataset.fileHeight){
+
   if(imageList[i].dataset.fileWidth > imageList[i].dataset.fileHeight){
     console.log(imageList[i].className);
+
     console.log(“hello”);
}
+
  }
 
console.log(imageList[i].dataset.fileWidth+","+imageList[i].dataset.fileHeight);
 
console.log(imageList[i].dataset.fileWidth+","+imageList[i].dataset.fileHeight);
 
  console.log(imageList[i].className);
 
  console.log(imageList[i].className);

Revision as of 16:53, 12 June 2021

/* 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++){
  if(imageList[i].dataset.fileWidth > imageList[i].dataset.fileHeight){
    console.log(“hello”);
  }
console.log(imageList[i].dataset.fileWidth+","+imageList[i].dataset.fileHeight);
 console.log(imageList[i].className);
}
           

            



mw.loader.using( 'mediawiki.api', function () { 
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);
	}
        var randomString = "<a href='http://lifeafterbob.wiki/view/"+randoms[0].title+"'>"+randoms[0].title+"</a>"
        $("#randompage").append(randomString);


} );


} )