Return-Path: X-Original-To: apmail-couchdb-commits-archive@www.apache.org Delivered-To: apmail-couchdb-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 8C38218F95 for ; Mon, 1 Feb 2016 17:40:36 +0000 (UTC) Received: (qmail 91702 invoked by uid 500); 1 Feb 2016 17:40:20 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 91562 invoked by uid 500); 1 Feb 2016 17:40:20 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 91482 invoked by uid 99); 1 Feb 2016 17:40:20 -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; Mon, 01 Feb 2016 17:40:20 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 5EBA8E0942; Mon, 1 Feb 2016 17:40:20 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: benkeen@apache.org To: commits@couchdb.apache.org Date: Mon, 01 Feb 2016 17:40:25 -0000 Message-Id: In-Reply-To: <6f3f3fce22084ec58dee801bf9ae8b16@git.apache.org> References: <6f3f3fce22084ec58dee801bf9ae8b16@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [6/6] fauxton commit: updated refs/heads/master to e6450a0 Updating React to 0.14.6 Project: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/commit/d0cb3d81 Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/tree/d0cb3d81 Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/diff/d0cb3d81 Branch: refs/heads/master Commit: d0cb3d8127b4094b44cbb38e77334664f11fba2d Parents: 574af6a Author: Ben Keen Authored: Tue Jan 19 09:49:30 2016 -0800 Committer: Ben Keen Committed: Mon Feb 1 08:39:35 2016 -0800 ---------------------------------------------------------------------- assets/js/libs/react-dom.js | 42 + assets/js/libs/react.js | 37013 ++++++++++++++++++------------------- 2 files changed, 18108 insertions(+), 18947 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/d0cb3d81/assets/js/libs/react-dom.js ---------------------------------------------------------------------- diff --git a/assets/js/libs/react-dom.js b/assets/js/libs/react-dom.js new file mode 100644 index 0000000..928ddd4 --- /dev/null +++ b/assets/js/libs/react-dom.js @@ -0,0 +1,42 @@ +/** + * ReactDOM v0.14.6 + * + * Copyright 2013-2015, Facebook, Inc. + * All rights reserved. + * + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. + * + */ +// Based off https://github.com/ForbesLindesay/umd/blob/master/template.js +;(function(f) { + // CommonJS + if (typeof exports === "object" && typeof module !== "undefined") { + module.exports = f(require('react')); + + // RequireJS + } else if (typeof define === "function" && define.amd) { + define(['react'], f); + + //