Better integration of bootstrap tour tooltips
This commit is contained in:
parent
e5f2b64d98
commit
23a195c38b
6 changed files with 154 additions and 148 deletions
|
@ -1,6 +1,4 @@
|
|||
'use strict';
|
||||
|
||||
$jq(document).ready(function ($) {
|
||||
$jq(function () {
|
||||
|
||||
// Bind to scroll.
|
||||
$(window).scroll(function () {
|
||||
|
@ -13,7 +11,7 @@ $jq(document).ready(function ($) {
|
|||
});
|
||||
|
||||
// Function for scrolling to top.
|
||||
$('#scroll-top-link').click(function () {
|
||||
$('#scroll-top-link').click(function (e) {
|
||||
$("html, body").animate({
|
||||
scrollTop: 0
|
||||
}, 600);
|
||||
|
|
Reference in a new issue