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') })…“) |
|||
(Eine dazwischenliegende Version desselben Benutzers wird nicht angezeigt) | |||
Zeile 90: | Zeile 90: | ||
$.downloadCounter(); | $.downloadCounter(); | ||
+ | |||
+ | $(function () { | ||
+ | $('[data-toggle="popover"]').popover() | ||
+ | }) | ||
+ | |||
+ | $(function () { | ||
+ | $('[data-toggle="tooltip"]').tooltip() | ||
+ | }) |
Aktuelle Version vom 28. August 2015, 11: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() })