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 0A4E610647 for ; Thu, 7 Nov 2013 13:59:48 +0000 (UTC) Received: (qmail 87258 invoked by uid 500); 7 Nov 2013 13:58:39 -0000 Delivered-To: apmail-flex-commits-archive@flex.apache.org Received: (qmail 87152 invoked by uid 500); 7 Nov 2013 13:58:36 -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 86695 invoked by uid 99); 7 Nov 2013 13:58:21 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Nov 2013 13:58:21 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id CC8B231D06C; Thu, 7 Nov 2013 13:58:21 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: erikdebruin@apache.org To: commits@flex.apache.org Date: Thu, 07 Nov 2013 13:58:31 -0000 Message-Id: <0afc44acf47b4ee6ad5151ea6f2b516d@git.apache.org> In-Reply-To: <3b8c40d7a47d4eea8a346043ec5c2946@git.apache.org> References: <3b8c40d7a47d4eea8a346043ec5c2946@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [12/17] git commit: [flex-asjs] [refs/heads/develop] - JSHint: fixed 'implied global' error. JSHint: fixed 'implied global' error. Signed-off-by: Erik de Bruin Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/46905965 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/46905965 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/46905965 Branch: refs/heads/develop Commit: 469059652a812517df3bc13e17ab6de45127bee8 Parents: 058b50e Author: Erik de Bruin Authored: Thu Nov 7 14:23:24 2013 +0100 Committer: Erik de Bruin Committed: Thu Nov 7 14:23:24 2013 +0100 ---------------------------------------------------------------------- frameworks/js/FlexJS/src/org/apache/flex/binding/WatcherBase.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/46905965/frameworks/js/FlexJS/src/org/apache/flex/binding/WatcherBase.js ---------------------------------------------------------------------- diff --git a/frameworks/js/FlexJS/src/org/apache/flex/binding/WatcherBase.js b/frameworks/js/FlexJS/src/org/apache/flex/binding/WatcherBase.js index bb44103..754b54a 100644 --- a/frameworks/js/FlexJS/src/org/apache/flex/binding/WatcherBase.js +++ b/frameworks/js/FlexJS/src/org/apache/flex/binding/WatcherBase.js @@ -172,7 +172,7 @@ org.apache.flex.binding.WatcherBase.prototype.wrapUpdate = var n = this.allowedErrorTypes.length; for (var i = 0; i < n; i++) { - if (error.constructor == allowedErrorTypes[i].type) + if (error.constructor == this.allowedErrorTypes[i].type) { var handler = staticClass.allowedErrorTypes[i].handler; if (handler != null)