@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.bundle.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
|
*/
|
|
@@ -1444,6 +1444,11 @@
|
|
|
1444
1444
|
minScrollbarLength: 20,
|
|
1445
1445
|
suppressScrollX: true
|
|
1446
1446
|
});
|
|
1447
|
+
$sidebarLeftContent.find('[data-toggle="collapse"]').on('click', function () {
|
|
1448
|
+
setTimeout(function () {
|
|
1449
|
+
sidebarLeftScroll.update();
|
|
1450
|
+
}, 300);
|
|
1451
|
+
});
|
|
1447
1452
|
} // Sidebar tabs
|
|
1448
1453
|
|
|
1449
1454
|
|