Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 71575200BD0 for ; Wed, 30 Nov 2016 12:52:10 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 6FDD0160B13; Wed, 30 Nov 2016 11:52:10 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id B9AFE160B08 for ; Wed, 30 Nov 2016 12:52:09 +0100 (CET) Received: (qmail 60834 invoked by uid 500); 30 Nov 2016 11:52:08 -0000 Mailing-List: contact commits-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list commits@flex.apache.org Received: (qmail 60826 invoked by uid 99); 30 Nov 2016 11:52:08 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 30 Nov 2016 11:52:08 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 9AC8BDFC55; Wed, 30 Nov 2016 11:52:08 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: carlosrovira@apache.org To: commits@flex.apache.org Message-Id: <17d6c386671d418181527f9bd677d06a@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: git commit: [flex-asjs] [refs/heads/develop] - Fill example links in drawer and navigation Date: Wed, 30 Nov 2016 11:52:08 +0000 (UTC) archived-at: Wed, 30 Nov 2016 11:52:10 -0000 Repository: flex-asjs Updated Branches: refs/heads/develop 8bf5dfd85 -> e8a913ef2 Fill example links in drawer and navigation Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/e8a913ef Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/e8a913ef Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/e8a913ef Branch: refs/heads/develop Commit: e8a913ef2111f8c91039510d53b9c8600bdca188 Parents: 8bf5dfd Author: Carlos Rovira Authored: Wed Nov 30 12:52:04 2016 +0100 Committer: Carlos Rovira Committed: Wed Nov 30 12:52:04 2016 +0100 ---------------------------------------------------------------------- .../src/main/flex/MainNavigation.mxml | 20 ++++++++++++-------- .../flex/org/apache/flex/mdl/NavigationLink.as | 2 +- 2 files changed, 13 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/e8a913ef/examples/flexjs/MDLExample/src/main/flex/MainNavigation.mxml ---------------------------------------------------------------------- diff --git a/examples/flexjs/MDLExample/src/main/flex/MainNavigation.mxml b/examples/flexjs/MDLExample/src/main/flex/MainNavigation.mxml index 65e3661..39a61a2 100644 --- a/examples/flexjs/MDLExample/src/main/flex/MainNavigation.mxml +++ b/examples/flexjs/MDLExample/src/main/flex/MainNavigation.mxml @@ -28,10 +28,10 @@ limitations under the License. - - - - + + + + @@ -50,10 +50,14 @@ limitations under the License. - - - - + + + + + + + + http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/e8a913ef/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 b468be9..61b04f5 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('') as Text; + textNode = document.createTextNode(text) as Text; a.appendChild(textNode); element = a as WrappedHTMLElement;