@finqu/cool 1.2.17 → 1.2.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/js/cool.bundle.js +6 -1
- package/dist/js/cool.bundle.js.map +1 -1
- package/dist/js/cool.esm.js +6 -1
- package/dist/js/cool.esm.js.map +1 -1
- package/dist/js/cool.js +6 -1
- package/dist/js/cool.js.map +1 -1
- package/html/index.html +255 -177
- package/js/dist/collapse.js +1 -1
- package/js/dist/common.js +216 -123
- package/js/dist/common.js.map +1 -1
- package/js/dist/dropdown.js +1 -1
- package/js/dist/popover.js +1 -1
- package/js/dist/sectiontabs.js +1 -1
- package/js/dist/select.js +1 -1
- package/js/dist/tooltip.js +1 -1
- package/js/src/common.js +7 -0
- package/package.json +1 -1
package/dist/js/cool.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Cool UI v1.2.
|
|
2
|
+
* Cool UI v1.2.17 (https://finqu.fi)
|
|
3
3
|
* Copyright 2011-2020 Finqu Oy
|
|
4
4
|
* Licensed under the ISC license - (http://opensource.org/licenses/ISC)
|
|
5
5
|
*/
|
|
@@ -1440,6 +1440,11 @@ function () {
|
|
|
1440
1440
|
minScrollbarLength: 20,
|
|
1441
1441
|
suppressScrollX: true
|
|
1442
1442
|
});
|
|
1443
|
+
$sidebarLeftContent.find('[data-toggle="collapse"]').on('click', function () {
|
|
1444
|
+
setTimeout(function () {
|
|
1445
|
+
sidebarLeftScroll.update();
|
|
1446
|
+
}, 300);
|
|
1447
|
+
});
|
|
1443
1448
|
} // Sidebar tabs
|
|
1444
1449
|
|
|
1445
1450
|
|