Adding Resizable to Twitter Bootstrap Panels
I have x number of basic Twitter Bootstrap Panels
http://getbootstrap.com/components/#panels-heading that share a class name of car-panel.
This is not working for me.
- <div class="panel panel-default car-panel">
- <div class="panel-heading">Car: {{$car->name}}</div>
- <div class="panel-body">Blah, blah, blah....</div>
- </div>
- $(function () {
- $(".car-panel").resizable({ handles: "n, e, s, w" });
- });
Is a Bootstrap Panel a weird case that can't be resized or do I need to do something special?
Thank you.