我怎样才能让Webshim和Turbolinks一起玩得很好?

时间:2014-08-08 18:34:39

标签: ruby-on-rails turbolinks webshim

我的表单的webshims在初始页面加载时工作正常,但是在我导航到另一个页面后没有。

我尝试在处理程序中调用updatePolyfill,但它并没有解决问题。

$.webshim.setOptions ...
$.webshim.polyfill('forms')

// none of these fixes the issue
$(document).on "page:load", ->
    $(this).updatePolyfill()
    $('body').updatePolyfill()
    $('form').updatePolyfill()
    $.webshim.polyfill('forms')

$(document).ready ->
    // same deal (using jquery.turbolinks)

如何在离开初始页面后加载垫片?

0 个答案:

没有答案