mirror of https://github.com/ColorlibHQ/AdminLTE
updated docs
- fixed javascript/card-widget - added new deps in dependenciespull/2220/head
parent
2865815c47
commit
6edd3d88d7
|
@ -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://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://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/lgaitan/pace#readme" target="_blank">Pace Progress</a></li>
|
||||||
|
<li><a href="https://github.com/giotiskl/filterizr#readme" target="_blank">FilterizR</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-sm-3">
|
<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://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://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://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>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -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.
|
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
|
```js
|
||||||
$('#my-card').Widget(options)
|
$('#my-card').CardWidget(options)
|
||||||
```
|
```
|
||||||
|
|
||||||
##### 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
|
|toggleMaximize | Toggles the state of the card between maximized and minimized
|
||||||
{: .table .table-bordered .bg-light}
|
{: .table .table-bordered .bg-light}
|
||||||
|
|
||||||
Example: `$('#my-card-widget').Widget('toggle')`
|
Example: `$('#my-card-widget').CardWidget('toggle')` or `$('#my-card').CardWidget('toggle')`
|
||||||
|
|
Loading…
Reference in New Issue