Fix for #links
  • For now replace the smoothScroll function in script.js with the following.

    This fix will be included in the next version 1.3

    // Function for smooth scrolling between the sections
    function smoothScroll() {
    $('.navbar').on('click','a', function(e) {
    var target = this.hash;
    e.preventDefault();
    $.scrollTo( target, 3 * animationSpeed, {
    axis: 'y',
    onAfter: function() {
    window.location.hash = target;
    }
    } );
    });
    }
  • I applied the fix, but it doesn't appear to be working.
    When I comment out the stellar script, the links work, but of course the parallax does not.
    You can view the site at http://scrapnshareapp.com
  • Hi

    The site is working ok for me, which browser / os are you on?
  • I've tried it in firefox and IE and I'm running Windows 7.
    Try clicking on the "Support" menu item. That's where the problem is.
  • Hi

    The problem is that the support link is not on the current page, but on a separate page.

    Here is a fix

    // Function for smooth scrolling between the sections
    function smoothScroll() {
    $('.navbar').on('click','a', function(e) {
    var target = this.hash;
    if( target != '' ) {
    e.preventDefault();
    $.scrollTo( target, 3 * animationSpeed, {
    axis: 'y',
    onAfter: function() {
    window.location.hash = target;
    }
    } );
    }
    });
    }
  • That worked. Thank you.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Google Sign In with OpenID Sign In with Twitter