thecodeholic / lobipanel

jQuery plugin for bootstrap panels. It extends panels with several common and useful functions.
MIT License
168 stars 75 forks source link

lobi-panel, basic-usage, not working #40

Open alpastar opened 7 years ago

alpastar commented 7 years ago

i want to remove reload,close,editTitle button from panel but they still showing struggling for one day,
what is wrong ?

//============================================== $(document).ready(function(){ //
//============================================== $('#lobi_panel_1').lobiPanel({ reload:false, close:false, editTitle:false }); // return -> null });

<div class="panel panel-primary lobipanel" id ="lobi_panel_1">

  <div class="panel-heading">
    <div class="panel-title">
        <h4>Panel title</h4>
    </div>
  </div>

  <div class="panel-body" id="panel_body_1">
        Panel content
   </div>

</div>     <!-- panel -->