Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion components/ILIAS/UI/resources/js/MainControls/system_info.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
/**
* This file is part of ILIAS, a powerful learning management system
* published by ILIAS open source e-Learning e.V.
*
* ILIAS is licensed with the GPL-3.0,
* see https://www.gnu.org/licenses/gpl-3.0.en.html
* You should have received a copy of said license along with the
* source code, too.
*
* If this is not the case or you just want to try ILIAS, you'll find
* us at:
* https://www.ilias.de
* https://github.com/ILIAS-eLearning
*/

il = il || {};
il.UI = il.UI || {};
il.UI.maincontrols = il.UI.maincontrols || {};
Expand All @@ -19,7 +34,7 @@ il.UI.maincontrols = il.UI.maincontrols || {};
maybeShowMoreButton(item, more_button);
$(window).resize(() => {
if (!calculating) {
maybeShowMoreButton(item);
maybeShowMoreButton(item, more_button);
}
});
};
Expand Down