Reputation: 1253
I'm using Control.Tabs (a JavaScript library that uses Prototype) for generating (local) HTML reports. However, if the path contains a space, the tabbing does not work in Chrome (e.g., "C:\test\tab.html" works, but "C:\test 2\tab.html" does not). How does the space affect the JS behavior?
Upvotes: 1
Views: 520
Reputation: 32306
If you are linking to tabs in other pages, I believe it affects the URL handling. Spaces must be replaced by +
s (See the RFC).
Upvotes: 1