When creating a page e.g. About this book, it converts it to About_this book which breaks the site from working. I am happy to work with you on developing this module. I'll even show you the example where it is.

Comments

yaremchuk’s picture

Hi Alex,

so you create link "About this book"?

I will check this problem soon, I think tomorrow I can allocate the time.
Please provide me more information about the problem or
link to the site or some screen shots.

Also, If you would like to be co-maintainer of the module,
you are welcome.

Thanks,
Vasily

yaremchuk’s picture

Status: Needs work » Fixed

Hi Alex,

you can change

this.href = "#"+anchor.replace(" ", "_");
to
this.href = "#"+anchor.replace(/ /g, "_");

in line 14 of js/scroll.js

or download alpha2
http://drupal.org/node/1223494

Thanks,
Vasily

aburrows’s picture

Thanks Vasily :)

yaremchuk’s picture

Status: Fixed » Closed (fixed)

It works (tested by Alex and me).