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 36EDE1194C for ; Wed, 30 Jul 2014 13:42:27 +0000 (UTC) Received: (qmail 69999 invoked by uid 500); 30 Jul 2014 13:42:27 -0000 Delivered-To: apmail-flex-commits-archive@flex.apache.org Received: (qmail 69973 invoked by uid 500); 30 Jul 2014 13:42:27 -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 69964 invoked by uid 99); 30 Jul 2014 13:42:27 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 30 Jul 2014 13:42:27 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id BED9699F0CD; Wed, 30 Jul 2014 13:42:26 +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 Message-Id: <7206d1477cb84f2e98974f55e8f76259@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: git commit: [flex-asjs] [refs/heads/VF2JS] - Add 'start' method, to satisfy current HTML setup. Date: Wed, 30 Jul 2014 13:42:26 +0000 (UTC) Repository: flex-asjs Updated Branches: refs/heads/VF2JS a0d97304a -> 49fa62fbe Add 'start' method, to satisfy current HTML setup. 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/49fa62fb Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/49fa62fb Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/49fa62fb Branch: refs/heads/VF2JS Commit: 49fa62fbe21a927854d194ffe0860369973fc390 Parents: a0d9730 Author: Erik de Bruin Authored: Wed Jul 30 15:41:35 2014 +0200 Committer: Erik de Bruin Committed: Wed Jul 30 15:41:35 2014 +0200 ---------------------------------------------------------------------- frameworks/js/VF2JS/src/vf2js_s/components/Application.js | 8 ++++++++ 1 file changed, 8 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49fa62fb/frameworks/js/VF2JS/src/vf2js_s/components/Application.js ---------------------------------------------------------------------- diff --git a/frameworks/js/VF2JS/src/vf2js_s/components/Application.js b/frameworks/js/VF2JS/src/vf2js_s/components/Application.js index 247b13c..049f4ac 100644 --- a/frameworks/js/VF2JS/src/vf2js_s/components/Application.js +++ b/frameworks/js/VF2JS/src/vf2js_s/components/Application.js @@ -28,3 +28,11 @@ goog.provide('vf2js_s.components.Application'); * @constructor */ vf2js_s.components.Application = function() {}; + + +/** + * @expose + */ +vf2js_s.components.Application.prototype.start = function() { + console.log('Started!!!'); +};