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.
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
Comment #1
yaremchuk commentedHi 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
Comment #2
yaremchuk commentedHi 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
Comment #3
aburrows commentedThanks Vasily :)
Comment #4
yaremchuk commentedIt works (tested by Alex and me).