Skip to content
This repository has been archived by the owner on Jul 11, 2019. It is now read-only.

Commit

Permalink
bug: Removed debug-output from MaterialMenu
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMitterer committed Apr 28, 2017
1 parent 94bdfdb commit 103bc85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/components/MaterialMenu.dart
Expand Up @@ -174,7 +174,7 @@ class MaterialMenu extends MdlComponent {
//- private ----------------------------------------------------------------------------------- //- private -----------------------------------------------------------------------------------


void _init() { void _init() {
_logger.info("MaterialMenu - init"); _logger.fine("MaterialMenu - init");


if (element != null) { if (element != null) {
// Create container for the menu. // Create container for the menu.
Expand Down Expand Up @@ -290,7 +290,7 @@ class MaterialMenu extends MdlComponent {
// Also getElementById is slow - so we wait a few ms // Also getElementById is slow - so we wait a few ms
new Future.delayed(new Duration(milliseconds: 100),() { new Future.delayed(new Duration(milliseconds: 100),() {
_addEventListeners(dom.document.getElementById(forElId)); _addEventListeners(dom.document.getElementById(forElId));
_logger.info("_addEventListeners $forElId"); _logger.fine("_addEventListeners $forElId");
}); });
} }
} }
Expand Down

0 comments on commit 103bc85

Please sign in to comment.