MediaWiki:Common.js: Unterschied zwischen den Versionen

Aus phenixxenia.org
Zur Navigation springen Zur Suche springen
Zeile 1: Zeile 1:
 
var setLogo = function(name)
 
var setLogo = function(name)
 
{
 
{
       var node = $('div#p-logo a:first')
+
       var node = $('div#p-logo a').first()
 
       var template = node.html()
 
       var template = node.html()
 
       console.log(template)
 
       console.log(template)

Version vom 23. Juni 2013, 07:19 Uhr

var setLogo = function(name)
{
      var node = $('div#p-logo a').first()
      var template = node.html()
      console.log(template)
      node.parent().append(template) // .css('background-image', 'url(/logos/' + name + '.png)')
}

/* Das folgende JavaScript wird für alle Benutzer geladen. */
var classList =$('body').attr('class').split(/\s+/)
$.each( classList, function(index, item){
    var m = item.match(/^page-Kategorie_(.*)$/)
    if(m) return setLogo(m[1])
});


$('#catlinks li a').each(function(){
  var cat = $(this).attr('title').split(':')[1]
  if(cat) return setLogo(cat)
})

// $('form[name="accountrequest"] fieldset')[2].hide()