Skip to content

Commit f455c23

Browse files
committed
chore: sync with CoreUI
2 parents a661bf0 + d71296e commit f455c23

File tree

4 files changed

+1068
-951
lines changed

4 files changed

+1068
-951
lines changed

CHANGELOG.md

+34
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,37 @@
1+
## v2.1.15
2+
- fix(sidebar): Selector.NAV_LINK_QUERIED must be "nav-link-queried"
3+
4+
###### Dependencies update:
5+
- update `core-js` to `^3.3.3`
6+
- update `regenerator-runtime` to `^0.13.3`
7+
- update `@babel/cli` to `^7.6.4`
8+
- update `@babel/core` to `^7.6.4`
9+
- update `@babel/plugin-proposal-object-rest-spread` to `^7.6.2`
10+
- update `@babel/plugin-transform-runtime` to `^7.6.2`
11+
- update `@babel/preset-env` to `^7.6.3`
12+
- update `autoprefixer` to `^9.7.0`
13+
- update `babel-eslint` to `^10.0.3`
14+
- update `babel-plugin-istanbul` to `^5.2.0`
15+
- update `copyfiles` to `^2.1.1`
16+
- update `cross-env` to `^5.2.1`
17+
- update `eslint` to `^6.5.1`
18+
- update `eslint-plugin-compat` to `^3.3.0`
19+
- update `node-sass` to `^4.13.0`
20+
- update `nodemon` to `^1.19.4`
21+
- update `postcss-cli` to `^6.1.3`
22+
- update `rimraf` to `^2.7.1`
23+
- update `rollup` to `^1.25.2`
24+
- update `rollup-plugin-babel` to `^4.3.3`
25+
- update `rollup-plugin-commonjs` to `^10.1.0`
26+
- update `rollup-plugin-node-resolve` to `^5.2.0`
27+
- update `semver` to `^6.3.0`
28+
- update `stylelint` to `^11.1.1`
29+
- update `stylelint-config-recommended-scss` to `^4.0.0`
30+
- update `stylelint-config-standard` to `^19.0.0`
31+
- update `stylelint-order` to `^3.1.1`
32+
- update `stylelint-scss` to `^3.12.0`
33+
- update `uglify-js` to `^3.6.4`
34+
135
## v2.1.14
236
- fix(scss): dark popover variables
337

js/src/sidebar.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ const Sidebar = (($) => {
3232
ACTIVE : 'active',
3333
BRAND_MINIMIZED : 'brand-minimized',
3434
NAV_DROPDOWN_TOGGLE : 'nav-dropdown-toggle',
35+
NAV_LINK_QUERIED : 'nav-link-queried',
3536
OPEN : 'open',
3637
SIDEBAR_FIXED : 'sidebar-fixed',
3738
SIDEBAR_MINIMIZED : 'sidebar-minimized',
@@ -159,7 +160,7 @@ const Sidebar = (($) => {
159160
let link = value
160161
let cUrl
161162

162-
if (link.classList.contains(Selector.NAV_LINK_QUERIED)) {
163+
if (link.classList.contains(ClassName.NAV_LINK_QUERIED)) {
163164
cUrl = String(window.location)
164165
} else {
165166
cUrl = String(window.location).split('?')[0]

0 commit comments

Comments
 (0)