Oxygenna Support
Discussions
Activity
Sign In
AppLand
Fix for #links
oxygenna
December 2012
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;
}
} );
});
}
adego
December 2012
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
oxygenna
December 2012
Hi
The site is working ok for me, which browser / os are you on?
adego
December 2012
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.
oxygenna
December 2012
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;
}
} );
}
});
}
adego
December 2012
That worked. Thank you.
Add a Comment
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Apply for Membership
Categories
All Discussions
203
Announcements
4
Support
199
↳ SmartBiz
18
↳ AppLand
15
↳ Caelus
15
↳ Caelus Wordpress
3
↳ SmartBox
151
↳ Smartbox Wordpress
104
Powered by Vanilla