Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Toggles not showing #1

Open
diegoballest opened this issue Oct 8, 2016 · 1 comment
Open

Toggles not showing #1

diegoballest opened this issue Oct 8, 2016 · 1 comment

Comments

@diegoballest
Copy link

Hi I would like to know if someone knows why I need to refresh my page to start showing the toggle switch, the first time I enter to the page with the toggle it shows a basic checkbox until the refresh and if I put a bootstrap button it shows the first time. thanks

@jayjlawrence
Copy link

Kinda late but better than never. ;-)

When using turbolinks the bootstrap-toggle.js is loaded and executed. It is not loaded and executed for subsequent requests that use the turbolinks feature.

what you need to do is in your 'application.js' or equivalent is put this:

$(document).on('ready turbolinks:load', function (e) {
   $('input[type=checkbox][data-toggle^=toggle]').bootstrapToggle()
});

You likely have code like this already so just add it in here.

I think if this is added to the docs it should clear things up. The super awesome response would be to detect if under turbolinks and register this function automatically in bootstrap-toggle.js.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants