Wechseln zu: Navigation, Suche

MediaWiki:Common.js: Unterschied zwischen den Versionen

 
Zeile 93: Zeile 93:
 
$(function () {
 
$(function () {
 
   $('[data-toggle="popover"]').popover()
 
   $('[data-toggle="popover"]').popover()
 +
})
 +
 +
$(function () {
 +
  $('[data-toggle="tooltip"]').tooltip()
 
})
 
})

Aktuelle Version vom 28. August 2015, 12:26 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()
})
 
$(function () {
  $('[data-toggle="tooltip"]').tooltip()
})