Browse Source

updated docs

- fixed javascript/card-widget
- added new deps in dependencies
pull/2220/head
REJack 5 years ago
parent
commit
6edd3d88d7
No known key found for this signature in database
GPG Key ID: 9F3976CC630CC888
  1. 3
      docs/dependencies.md
  2. 4
      docs/javascript/card-widget.md

3
docs/dependencies.md

@ -81,6 +81,7 @@ AdminLTE makes use of the following plugins. For documentation, updates or licen
<li><a href="https://github.com/bbmumford/jqvmap#readme" target="_blank">jQuery Vector Map</a></li>
<li><a href="https://kingsora.github.io/OverlayScrollbars/" target="_blank">Overlay Scrollbars</a></li>
<li><a href="https://github.com/lgaitan/pace#readme" target="_blank">Pace Progress</a></li>
<li><a href="https://github.com/giotiskl/filterizr#readme" target="_blank">FilterizR</a></li>
</ul>
</div>
<div class="col-sm-3">
@ -89,6 +90,8 @@ AdminLTE makes use of the following plugins. For documentation, updates or licen
<li><a href="https://github.com/jquery/jquery-mousewheel#readme" target="_blank">jQuery Mousewheel</a></li>
<li><a href="https://momentjs.com/" target="_blank">Moment.js</a></li>
<li><a href="https://dmitrybaranovskiy.github.io/raphael/" target="_blank">Raphaël</a></li>
<li><a href="https://github.com/bpampuch/pdfmake#readme" target="_blank">pdfmake</a></li>
<li><a href="https://github.com/Stuk/jszip#readme" target="_blank">jszip</a></li>
</ul>
</div>
</div>

4
docs/javascript/card-widget.md

@ -139,7 +139,7 @@ This attribute, when attached to a button, allows the box to be maximize/minimiz
To activate any button using jQuery, you must provide the removeTrigger and collapseTrigger options. Otherwise, the plugin will assume the default `data-card-widget` selectors.
```js
$('#my-card').Widget(options)
$('#my-card').CardWidget(options)
```
##### Options
@ -192,4 +192,4 @@ Example: `$('#my-card').on('expanded.lte.cardwidget', handleExpandedEvent)`
|toggleMaximize | Toggles the state of the card between maximized and minimized
{: .table .table-bordered .bg-light}
Example: `$('#my-card-widget').Widget('toggle')`
Example: `$('#my-card-widget').CardWidget('toggle')` or `$('#my-card').CardWidget('toggle')`

Loading…
Cancel
Save