Difference between revisions of "MediaWiki:Common.js"

From Buddha-Nature
((by SublimeText.Mediawiker))
((by SublimeText.Mediawiker))
Line 21: Line 21:
 
     $(this).addClass("active");
 
     $(this).addClass("active");
 
     $(this).siblings('.bnw-resources-button').removeClass("active");
 
     $(this).siblings('.bnw-resources-button').removeClass("active");
 +
    });
 +
    $('#bnw-resources-button-1').click(funtion(){
 +
    $('#bnw-resource-item-1').addClass('show');
 
     });
 
     });
 
});
 
});

Revision as of 18:00, 23 October 2017

mw.loader.load( 'https://fonts.googleapis.com/css?family=Crimson+Text:400,400i,700', 'text/css' );
mw.loader.load( 'https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css', 'text/css' );
mw.loader.load( 'https://use.fontawesome.com/bd289233d5.js' );
mw.loader.load( 'https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css', 'text/css' );
mw.loader.load( 'https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js' );
mw.loader.load( 'https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js' );
mw.loader.load( 'https://code.jquery.com/jquery-3.2.1.slim.min.js' );


// Safari 3.0+ "[object HTMLElementConstructor]" 
var isSafari = /constructor/i.test(window.HTMLElement) || (function (p) { return p.toString() === "[object SafariRemoteNotification]"; })(!window['safari'] || safari.pushNotification);

if (isSafari = true) {
	$('#navbar-main').css('background','rgba(16, 55, 82, 0.62)')
}



$(document).ready(function(){
	$('.bnw-resources-button').click(function(){
    	$(this).addClass("active");
    	$(this).siblings('.bnw-resources-button').removeClass("active");
    });
    $('#bnw-resources-button-1').click(funtion(){
    	$('#bnw-resource-item-1').addClass('show');
    });
});