I know that Abyssa can automatically detect the hash part of the url even if there are multiple hash in it, but still, would it be possible to customize the value of the hashbang which is the fake one?
Why do I need that? Because stupid Disqus only works correctly out of the box with a true hashbang like #!. It is a pain in the ass, but that's it or doing DOM manipulation to fully kill Disqus in a SPA and then reload it.
Thanks !
// Customize with a hashbang '#!'
Router.configure({
hashPrefix: '!'
});
Hi there,
I know that Abyssa can automatically detect the hash part of the url even if there are multiple hash in it, but still, would it be possible to customize the value of the hashbang which is the fake one?
Why do I need that? Because stupid Disqus only works correctly out of the box with a true hashbang like
#!
. It is a pain in the ass, but that's it or doing DOM manipulation to fully kill Disqus in a SPA and then reload it.Thanks !