We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I use render_async with:
render_async some_path, toggle: { selector: "#sync_load_trigger" }
when I click sync_load_trigger button I got
(index):11015 Uncaught ReferenceError: _interval is not defined at HTMLLIElement.<anonymous> ((index):11015)
render_async version: 2.1.2
My workaround is define a global variable _interval before render_async
_interval
<script type="text/javascript"> _interval = null </script>
The text was updated successfully, but these errors were encountered:
Merge pull request #93 from fffx/fix_interval_reference_error
3fed514
Fix: "Uncaught ReferenceError: _interval" #92
Fix for this is here #93
Sorry, something went wrong.
I've just released new version 2.1.3! Feel free to check if everything is OK https://rubygems.org/gems/render_async/versions/2.1.3
No branches or pull requests
I use render_async with:
when I click sync_load_trigger button I got
render_async version: 2.1.2
My workaround is define a global variable
_interval
before render_asyncThe text was updated successfully, but these errors were encountered: