File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1
- ## v2.1.14
1
+ ## v2.1.15
2
+ - fix(sidebar): Selector.NAV_LINK_QUERIED must be "nav-link-queried" #83 - thanks @expressiveco @gtruini
3
+
2
4
5
+ ## v2.1.14
3
6
###### Dependencies update:
7
+ - chore(deps): bump lodash from 4.17.11 to 4.17.14
4
8
- update ` rollup ` to ` ^1.15.4 `
5
9
- update ` rollup-plugin-node-resolve ` to ` ^5.0.2 `
6
10
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ const Sidebar = (($) => {
32
32
ACTIVE : 'active' ,
33
33
BRAND_MINIMIZED : 'brand-minimized' ,
34
34
NAV_DROPDOWN_TOGGLE : 'nav-dropdown-toggle' ,
35
+ NAV_LINK_QUERIED : 'nav-link-queried' ,
35
36
OPEN : 'open' ,
36
37
SIDEBAR_FIXED : 'sidebar-fixed' ,
37
38
SIDEBAR_MINIMIZED : 'sidebar-minimized' ,
@@ -159,7 +160,7 @@ const Sidebar = (($) => {
159
160
let link = value
160
161
let cUrl
161
162
162
- if ( link . classList . contains ( Selector . NAV_LINK_QUERIED ) ) {
163
+ if ( link . classList . contains ( ClassName . NAV_LINK_QUERIED ) ) {
163
164
cUrl = String ( window . location )
164
165
} else {
165
166
cUrl = String ( window . location ) . split ( '?' ) [ 0 ]
You can’t perform that action at this time.
0 commit comments