We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 007d937 commit b537607Copy full SHA for b537607
src/service.js
@@ -68,12 +68,7 @@ function showPanel(panelOptions, existingId) {
68
function showPanelStack(panelOptions) {
69
if (!panelOptions || !panelOptions.length) throw new Error('panelOptions must be an array');
70
71
- const panelResults = panelOptions.map((panelOption, index) => {
72
- // //NOTE: disable animation for all but the top most panel
73
- // if (index < (panelOptions.length - 1)) {
74
- // panelOption.animate = false;
75
- // }
76
-
+ const panelResults = panelOptions.map((panelOption) => {
77
return showPanel(panelOption, this._id);
78
});
79
0 commit comments