Skip to content
Snippets Groups Projects

Fix the issue frame is not define.

1 file
+ 5
1
Compare changes
  • Side-by-side
  • Inline
+ 5
1
@@ -4,6 +4,8 @@
*/
(function ($, Drupal, once, drupalSettings) {
// Define the frame var.
var frame;
var scrollTo = function (to, duration) {
var element = document.scrollingElement || document.documentElement,
start = element.scrollTop,
@@ -46,7 +48,9 @@
$(once('backtotop', '#backtotop'), context).each(function () {
$(this).click(function () {
$("html, body").bind("scroll mousedown DOMMouseScroll mousewheel keyup", function () {
window.cancelAnimationFrame(frame);
if (typeof frame !== 'undefined') {
window.cancelAnimationFrame(frame);
}
});
scrollTo(0, 1200);
});
Loading