Organize the items of the top (menu)bar.
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
Version | Status |
---|---|
12 | Active |
11 | Active |
10 | Active |
9 | Active |
8 | Rejected |
7 | Active |
6 | Active |
5 | Inactive |
4 | Rejected |
3 | Active |
2 | Active |
1 | Inactive |
The comment says when the session mode **is** `user` but the code says `!== 'user'`. Is it a bug or that's a wrong comment?
No, the comment is right as it is, but maybe not formulated too well. The intention is that "run" means not returning here. So if the session mode is not user and the parent session mode is not user, then the if statement evaluates to true and we immediately return (aka not "run" the next code). And if the session mode is user or parent session mode is user, then we don't return and run the function code. Hope that clears it up. Thanks for the review!