Wechseln zu: Navigation, Suche

MediaWiki:Common.js: Unterschied zwischen den Versionen

(Die Seite wurde neu angelegt: „Any JavaScript here will be loaded for all users on every page load.: $('#myTab a').click(function (e) { e.preventDefault() $(this).tab('show') })…“)
 
Zeile 90: Zeile 90:
  
 
$.downloadCounter();
 
$.downloadCounter();
 +
 +
$(function () {
 +
  $('[data-toggle="popover"]').popover()
 +
})

Version vom 30. Juli 2015, 17:11 Uhr

/* Any JavaScript here will be loaded for all users on every page load. */
 
$('#myTab a').click(function (e) {
  e.preventDefault()
  $(this).tab('show')
})
 
 
$('#myAlert a').click(function (e) {
  e.preventDefault()
  $(this).tab('show')
})
 
$('#myButton a').click(function (e) {
  e.preventDefault()
  $(this).tab('show')
})
 
$('#myCarousel a').click(function (e) {
  e.preventDefault()
  $(this).tab('show')
})
 
$('#myColour a').click(function (e) {
  e.preventDefault()
  $(this).tab('show')
})
 
$('#myDropdown a').click(function (e) {
  e.preventDefault()
  $(this).tab('show')
})
 
$('#myIcons a').click(function (e) {
  e.preventDefault()
  $(this).tab('show')
})
 
$('#myImageboxes a').click(function (e) {
  e.preventDefault()
  $(this).tab('show')
})
 
$('#myInfohorizontal a').click(function (e) {
  e.preventDefault()
  $(this).tab('show')
})
 
$('#myJumbotron a').click(function (e) {
  e.preventDefault()
  $(this).tab('show')
})
 
$('#myNavbar a').click(function (e) {
  e.preventDefault()
  $(this).tab('show')
})
 
$('#myPagination a').click(function (e) {
  e.preventDefault()
  $(this).tab('show')
})
 
$('#myPanel a').click(function (e) {
  e.preventDefault()
  $(this).tab('show')
})
 
$('#myPillnav a').click(function (e) {
  e.preventDefault()
  $(this).tab('show')
})
 
$('#myPopover a').click(function (e) {
  e.preventDefault()
  $(this).tab('show')
})
 
$('#mySocial a').click(function (e) {
  e.preventDefault()
  $(this).tab('show')
})
 
$('#myTables a').click(function (e) {
  e.preventDefault()
  $(this).tab('show')
})
 
$('.lazyYT').lazyYT();
 
$.downloadCounter();
 
$(function () {
  $('[data-toggle="popover"]').popover()
})