You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by hn...@apache.org on 2021/01/19 14:33:58 UTC

[myfaces-tobago] branch master updated: add comment for dropdown menu

This is an automated email from the ASF dual-hosted git repository.

hnoeth pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git


The following commit(s) were added to refs/heads/master by this push:
     new a69c3ac  add comment for dropdown menu
a69c3ac is described below

commit a69c3ac1a5ea28cb5e447c6f5d477470ebd6b644
Author: Henning Noeth <hn...@apache.org>
AuthorDate: Fri Jan 15 16:09:50 2021 +0100

    add comment for dropdown menu
---
 tobago-theme/tobago-theme-standard/npm/ts/tobago-dropdown.ts | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/tobago-theme/tobago-theme-standard/npm/ts/tobago-dropdown.ts b/tobago-theme/tobago-theme-standard/npm/ts/tobago-dropdown.ts
index 8d8684c..7edf46e 100644
--- a/tobago-theme/tobago-theme-standard/npm/ts/tobago-dropdown.ts
+++ b/tobago-theme/tobago-theme-standard/npm/ts/tobago-dropdown.ts
@@ -24,6 +24,9 @@ const Event = {
   SHOWN: "tobago.dropdown.shown"
 };
 
+/**
+ * The dropdown implementation of Bootstrap does not support submenus. Therefore we need an own dropdown implementation.
+ */
 class Dropdown extends HTMLElement {
 
   private dropdownEntries: DropdownEntry[] = [];