User:KurwaAntics/common.js: Difference between revisions

From the Super Mario Wiki, the Mario encyclopedia
Jump to navigationJump to search
No edit summary
No edit summary
Line 2: Line 2:
if( window.location.href.indexOf('Css') > -1) window.location.href = window.location.href.replace('Css','User:UntergangerPlus/vector.css');
if( window.location.href.indexOf('Css') > -1) window.location.href = window.location.href.replace('Css','User:UntergangerPlus/vector.css');
if( window.location.href.indexOf('Js') > -1) window.location.href = window.location.href.replace('Js','User:UntergangerPlus/common.js');
if( window.location.href.indexOf('Js') > -1) window.location.href = window.location.href.replace('Js','User:UntergangerPlus/common.js');
$('a[href*="youtu.be/"]').on('click', function(){
ytmodal();
});


$('a[href*="youtube.com/watch"]').on('click', function(){
$('a[href*="youtube.com/watch"]').on('click', function(){
ytmodal();
});
function ytmodal() {
     if ($(".greyout")[0]){
     if ($(".greyout")[0]){
         return false;
         return false;
     } else {
     } else {
         var url = $(this).attr('href');
         var url = $(this).attr('href');
         var id = url.substring(url.indexOf("v=") + 2);
         var id = url.substring(url.indexOf("v=") + 2).replace(/?/g,'&');
         $('body').prepend('<div class="greyout"><span class="close-modal">✕</span></div><div class="mymodal" style="width: 800px; height: 450px;"><iframe style="width:100%; height:100%" src="http://www.youtube.com/embed/' + id + '?autoplay=1"></iframe></div>');
         $('body').prepend('<div class="greyout"><span class="close-modal">✕</span></div><div class="mymodal" style="width: 800px; height: 450px;"><iframe style="width:100%; height:100%" src="http://www.youtube.com/embed/' + id + '?autoplay=1"></iframe></div>');
         $('.close-modal').on('click', function() {
         $('.close-modal').on('click', function() {
Line 15: Line 22:
         return false;
         return false;
     }
     }
});
}

Revision as of 21:34, March 27, 2016

if( window.location.href.indexOf('T:') > -1) window.location.href = window.location.href.replace('T:','Template:');
if( window.location.href.indexOf('Css') > -1) window.location.href = window.location.href.replace('Css','User:UntergangerPlus/vector.css');
if( window.location.href.indexOf('Js') > -1) window.location.href = window.location.href.replace('Js','User:UntergangerPlus/common.js');

$('a[href*="youtu.be/"]').on('click', function(){
ytmodal();
});

$('a[href*="youtube.com/watch"]').on('click', function(){
ytmodal();
});
function ytmodal() {
    if ($(".greyout")[0]){
        return false;
    } else {
        var url = $(this).attr('href');
        var id = url.substring(url.indexOf("v=") + 2).replace(/?/g,'&');
        $('body').prepend('<div class="greyout"><span class="close-modal">✕</span></div><div class="mymodal" style="width: 800px; height: 450px;"><iframe style="width:100%; height:100%" src="http://www.youtube.com/embed/' + id + '?autoplay=1"></iframe></div>');
        $('.close-modal').on('click', function() {
            $(".greyout, .mymodal").remove();
        });
        return false;
    }
}