Return-Path: X-Original-To: apmail-flex-commits-archive@www.apache.org Delivered-To: apmail-flex-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9077E174C3 for ; Thu, 10 Sep 2015 21:35:46 +0000 (UTC) Received: (qmail 47545 invoked by uid 500); 10 Sep 2015 21:35:46 -0000 Delivered-To: apmail-flex-commits-archive@flex.apache.org Received: (qmail 47434 invoked by uid 500); 10 Sep 2015 21:35:46 -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 47359 invoked by uid 99); 10 Sep 2015 21:35:46 -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; Thu, 10 Sep 2015 21:35:46 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 44AE4E1082; Thu, 10 Sep 2015 21:35:46 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: aharui@apache.org To: commits@flex.apache.org Date: Thu, 10 Sep 2015 21:35:51 -0000 Message-Id: <7f6a7a7aa2b5488fa00caaf65fffaa48@git.apache.org> In-Reply-To: <2e159704f27b441fa3814f907188a5af@git.apache.org> References: <2e159704f27b441fa3814f907188a5af@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [6/9] git commit: [flex-asjs] [refs/heads/develop] - need binding event need binding event Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/019e958a Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/019e958a Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/019e958a Branch: refs/heads/develop Commit: 019e958af1c782669998a79d8070887d7d260263 Parents: e16eeb4 Author: Alex Harui Authored: Thu Sep 10 14:08:54 2015 -0700 Committer: Alex Harui Committed: Thu Sep 10 14:14:17 2015 -0700 ---------------------------------------------------------------------- frameworks/projects/Core/as/src/org/apache/flex/core/UIBase.as | 1 + .../projects/Core/as/src/org/apache/flex/core/UIButtonBase.as | 1 + 2 files changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/019e958a/frameworks/projects/Core/as/src/org/apache/flex/core/UIBase.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/Core/as/src/org/apache/flex/core/UIBase.as b/frameworks/projects/Core/as/src/org/apache/flex/core/UIBase.as index f7ebd20..3f00b32 100644 --- a/frameworks/projects/Core/as/src/org/apache/flex/core/UIBase.as +++ b/frameworks/projects/Core/as/src/org/apache/flex/core/UIBase.as @@ -547,6 +547,7 @@ package org.apache.flex.core /** * @private */ + [Bindable("visibleChanged")] override public function set visible(value:Boolean):void { super.visible = value; http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/019e958a/frameworks/projects/Core/as/src/org/apache/flex/core/UIButtonBase.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/Core/as/src/org/apache/flex/core/UIButtonBase.as b/frameworks/projects/Core/as/src/org/apache/flex/core/UIButtonBase.as index 5aa6de5..911176a 100644 --- a/frameworks/projects/Core/as/src/org/apache/flex/core/UIButtonBase.as +++ b/frameworks/projects/Core/as/src/org/apache/flex/core/UIButtonBase.as @@ -478,6 +478,7 @@ package org.apache.flex.core /** * @private */ + [Bindable("visibleChanged")] override public function set visible(value:Boolean):void { super.visible = value;