Skip to content

Commit

Permalink
Fix: Replace deprecated drawer.triggerCustomView with drawer.openCust…
Browse files Browse the repository at this point in the history
…omView (fixes #222)
  • Loading branch information
swashbuck authored May 24, 2024
1 parent d6db24b commit a82ac7a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* A sentence describing each fix

### Update
* A sentence describing each udpate
* A sentence describing each update

### New
* A sentence describing each new feature
Expand Down
2 changes: 1 addition & 1 deletion js/PageLevelProgressNavigationView.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export default class PageLevelProgressNavigationView extends NavigationButtonVie
onProgressClicked(event) {
if (event && event.preventDefault) event.preventDefault();
this.$el.attr('aria-expanded', true);
drawer.triggerCustomView(new PageLevelProgressView({
drawer.openCustomView(new PageLevelProgressView({
collection: this.collection
}).$el, false, this.model.get('_drawerPosition'));
}
Expand Down

0 comments on commit a82ac7a

Please sign in to comment.