MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 20: | Line 20: | ||
}); | }); | ||
/* | |||
jQuery(document).ready( function() { | jQuery(document).ready( function() { | ||
jQuery('.srf-eventcalendar').each(function() { | jQuery('.srf-eventcalendar').each(function() { | ||
Line 41: | Line 42: | ||
} ); | } ); | ||
} ); | } ); | ||
*/ |
Revision as of 23:03, 24 February 2015
jQuery(document).ready(function($) {
var pops = function( elems ) {
for (var i=0; i<elems.length; i++) {
if ( !(' '+elems[i].className+' ').match( / pops / ) ) continue;
var anchs = elems[i].getElementsByTagName('a');
for (var j=0; j<anchs.length; j++) anchs[j].target = '_blank';
}
};
var bc = document.getElementById('bodyContent');
var tags = ['span', 'div', 'table', 'td', 'th'];
for (var i=0; i<tags.length; i++) pops( bc.getElementsByTagName( tags[i] ) );
});
jQuery(document).ready(function($) {
jQuery('.formcancel').each(function(index) {
var buttontext = jQuery(this).html();
var html = '<a onclick="window.history.back();">' + buttontext + '</a>';
jQuery(this).html(html);
});
});
/*
jQuery(document).ready( function() {
jQuery('.srf-eventcalendar').each(function() {
jQuery(this).on('srf.eventcalendar.eventRender', function(event, handler) {
handler.element.find('.fc-event-title').each(function(index, element) {
jQuery.ajax({
type: "POST",
url: wgScriptPath + "/api.php",
data: {
action: "getSemanticTitle",
format: "json",
titles: element.innerHTML
},
dataType: "json",
success: function(data) {
element.innerHTML = data.getSemanticTitle[0].result;
}
} );
} );
} );
} );
} );
*/