Добро пожаловать на Lesta Games Wiki!

MediaWiki:Common.js — различия между версиями

Перейти к: навигация, поиск
Версия 22:05, 2 сентября 2011Версия 22:09, 2 сентября 2011
Строка 88:Строка 88:
  return;  return;
  }  }
? mapImages = mapDiv.innertext.split(',');+ mapImages = mapDiv.innerHTML.split(',');
  mapDiv.innerHTML = '';  mapDiv.innerHTML = '';
  mapDiv.style.background = 'url(' + mapImages[1] + ') top no-repeat';  mapDiv.style.background = 'url(' + mapImages[1] + ') top no-repeat';
  
?/* var aNode = document.createElement( 'a' );  
? aNode.setAttribute( 'id', 'nextsteplink' ); 
? aNode.setAttribute( 'href', '#' ); 
? aNode.setAttribute( 'onClick', 'return tacticNext();' ); 
? aNode.appendChild(document.createTextNode('Продолжить »')); 
? document.getElementById('nextstep').appendChild( aNode ); */ 
  } catch(e) {  } catch(e) {
  return;  return;

Версия 22:09, 2 сентября 2011

/* Размещённый здесь JavaScript код будет загружаться всем пользователям при обращении к каждой странице */
function addWikifButton() {
        var toolbar = document.getElementById('toolbar')
        if (!toolbar) return
        var i = document.createElement('img')
        i.src = 'https://upload.wikimedia.org/wikisource/ru/d/d1/Button-wikifikator.png'
        i.alt = i.title = 'викификатор'
        i.onclick = Wikify
        i.style.cursor = 'pointer'
        toolbar.appendChild(i)
}
if (wgAction == 'edit' || wgAction == 'submit') {
        importScriptURI('https://ru.wikipedia.org/w/index.php?title=MediaWiki:Wikificator.js&action=raw&ctype=text/javascript')
        addOnloadHook(addWikifButton)
}

function addPlayButton() {
  try {
    var logout = document.getElementById('pt-logout');
    if (logout != null) {
      document.getElementById('footer-wot-link').style.display = 'none';
    }
    var headerAttract = document.getElementById('header-attract');
    headerAttract.setAttribute( 'id', 'old-header-attract');
    headerAttract.style.display = 'none';
    var head = document.getElementById('mw-head');    
    var aNode = document.createElement( 'a' );   
    var divNode = document.createElement( 'div' );
    aNode.setAttribute( 'href', 'javascript:void(0)' );
    aNode.setAttribute( 'id', 'header-attract');
    divNode.setAttribute( 'id', 'btn-play');
    divNode.appendChild( aNode );
    head.appendChild( divNode );    
  } catch(e) {
    return;
  }
}

addOnloadHook(addPlayButton);


var tacticCounter = 1;
var tacticPages = 4;
var mapPrefix = 'karel54_';

function tacticNext() {  
  document.getElementById('step' + tacticCounter).style.display = 'none';
  document.getElementById(mapPrefix + tacticCounter).style.display = 'none';

  if (tacticCounter < tacticPages) { 
    tacticCounter++ ;
    if (tacticCounter == tacticPages) document.getElementById('nextsteplink').innerHTML = 'В начало';
  } else { 
    tacticCounter = 1; 
    document.getElementById('nextsteplink').innerHTML = 'Продолжить »';
  }

  document.getElementById('step' + tacticCounter).style.display = 'block';
  document.getElementById(mapPrefix + tacticCounter).style.display = 'block';
  return false;
}

function tacticSlideShow() {
  try {
    var nextDiv = document.getElementById('nextstep');
    if (nextDiv == null) {
      return;
    }
    var aNode = document.createElement( 'a' ); 
    aNode.setAttribute( 'id', 'nextsteplink' );
    aNode.setAttribute( 'href', '#' );
    aNode.setAttribute( 'onClick', 'return tacticNext();' );
    aNode.appendChild(document.createTextNode('Продолжить »'));
    nextDiv.appendChild( aNode );
  } catch(e) {
    return;
  }
}

addOnloadHook(tacticSlideShow);

var mapImages = new Array();

function tacticSlideShow2() {
  try {
    var mapDiv = document.getElementById('tacticmap');
    if (mapDiv == null) {
      return;
    }
    mapImages = mapDiv.innerHTML.split(',');
    mapDiv.innerHTML = '';
    mapDiv.style.background = 'url(' + mapImages[1] + ') top no-repeat';

  } catch(e) {
    return;
  }
}

addOnloadHook(tacticSlideShow2);