You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ca...@apache.org on 2016/11/30 18:17:52 UTC

git commit: [flex-asjs] [refs/heads/develop] - fix error introduced in last commit that makes navigation link not work

Repository: flex-asjs
Updated Branches:
  refs/heads/develop e8a913ef2 -> 970877042


fix error introduced in last commit that makes navigation link not work


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/97087704
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/97087704
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/97087704

Branch: refs/heads/develop
Commit: 970877042711a911c34fbacec44211e73191f4c6
Parents: e8a913e
Author: Carlos Rovira <ca...@apache.org>
Authored: Wed Nov 30 19:17:47 2016 +0100
Committer: Carlos Rovira <ca...@apache.org>
Committed: Wed Nov 30 19:17:47 2016 +0100

----------------------------------------------------------------------
 .../src/main/flex/org/apache/flex/mdl/NavigationLink.as            | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/97087704/frameworks/projects/MaterialDesignLite/src/main/flex/org/apache/flex/mdl/NavigationLink.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/MaterialDesignLite/src/main/flex/org/apache/flex/mdl/NavigationLink.as b/frameworks/projects/MaterialDesignLite/src/main/flex/org/apache/flex/mdl/NavigationLink.as
index 61b04f5..b468be9 100644
--- a/frameworks/projects/MaterialDesignLite/src/main/flex/org/apache/flex/mdl/NavigationLink.as
+++ b/frameworks/projects/MaterialDesignLite/src/main/flex/org/apache/flex/mdl/NavigationLink.as
@@ -62,7 +62,7 @@ package org.apache.flex.mdl
 			var a:HTMLElement = document.createElement('a') as HTMLElement;
             a.setAttribute('href', href);
             
-            textNode = document.createTextNode(text) as Text;
+            textNode = document.createTextNode('') as Text;
             a.appendChild(textNode); 
 
 			element = a as WrappedHTMLElement;