ShareThis安装Turbolinks gem后无法正常工作

时间:2013-03-05 02:37:34

标签: javascript jquery ruby-on-rails sharethis turbolinks

我最近安装了turbolinks和jquery-turbolinks宝石,现在我的ShareThis按钮没有像点击时那样弹出。

我目前在application.html.erb head中有这些ShareThis脚本:

<script type="text/javascript">var switchTo5x=false;</script>
<script type="text/javascript" src="https://ws.sharethis.com/button/buttons.js"></script>
<script type="text/javascript">stLight.options({publisher: "eonwofenaoenf-oenfwoafneo-woenfowenfe"});</script>

以下是我的show.html.erb页面上的代码:

<span class='st_sharethis_custom'></span>

感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

我检查了button.js并找到了这样做的方法。

<script type="text/javascript">var switchTo5x=false;</script>
<script type="text/javascript" src="https://ws.sharethis.com/button/buttons.js"></script>
<script type="text/javascript">stLight.options({publisher: "eonwofenaoenf-oenfwoafneo-woenfowenfe"});</script>
<script type="text/javascript">stLight && (stLight.readyRun = false)</script>

并且span标记与您的标记相同。

<span class='st_sharethis_custom'></span>

但是对于button.js在sharehishis方面的工作流程的改变,上述解决方案相当薄弱。

因此,当您比较共享按钮与页面加载速度和共享按钮重要性赢得页面加载速度时,禁用turbolinks是一个很好的解决方案。