-
Notifications
You must be signed in to change notification settings - Fork 209
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
Realtime enable and disable #31
Comments
Not at this moment, no. Also, how would disabling it work? Would it simply snap the sidebar back to its original position? Or would it keep its current position, but stop from changing it any further? |
The columns of our website can change dynamically. Because the content changes dynamically. For example, the columns of our site fall from two to three. We are activating the plug-in for all of our columns. We get very good results. But when we drop the column count dynamically from three to two, the columns are climbing over. <!-- COLUMN PATTERN-1 -->
<div class="row">
<div class="col-md-6">
<!-- AREA-1 -->
</div>
<div class="col-md-6">
<div class="col-md-6">
<!-- AREA-2 -->
</div>
<div class="col-md-6">
<!-- AREA-3 -->
</div>
</div>
</div>
<!-- COLUMN PATTERN-2 -->
<div class="row">
<div class="col-md-6">
<!-- AREA-1 -->
</div>
<div class="col-md-6">
<div class="col-md-12">
<!-- AREA-2 -->
</div>
<div class="col-md-12">
<!-- AREA-3 -->
</div>
</div>
</div> |
This is now possible with version 1.7.0: #41 (comment) Question is: should this destroy functionality be bundled inside the library? |
Is it possible to enable or disable this plugin at any time with JavaScript?
The text was updated successfully, but these errors were encountered: