/**1* Copyright 2013-2015, Facebook, Inc.2* All rights reserved.3*4* This source code is licensed under the BSD-style license found in the5* LICENSE file in the root directory of this source tree. An additional grant6* of patent rights can be found in the PATENTS file in the same directory.7*8* @providesModule DefaultEventPluginOrder9*/1011'use strict';1213var keyOf = require("./keyOf");1415/**16* Module that is injectable into `EventPluginHub`, that specifies a17* deterministic ordering of `EventPlugin`s. A convenient way to reason about18* plugins, without having to package every one of them. This is better than19* having plugins be ordered in the same order that they are injected because20* that ordering would be influenced by the packaging order.21* `ResponderEventPlugin` must occur before `SimpleEventPlugin` so that22* preventing default on events is convenient in `SimpleEventPlugin` handlers.23*/24var DefaultEventPluginOrder = [25keyOf({ResponderEventPlugin: null}),26keyOf({SimpleEventPlugin: null}),27keyOf({TapEventPlugin: null}),28keyOf({EnterLeaveEventPlugin: null}),29keyOf({ChangeEventPlugin: null}),30keyOf({SelectEventPlugin: null}),31keyOf({BeforeInputEventPlugin: null}),32keyOf({AnalyticsEventPlugin: null}),33keyOf({MobileSafariClickEventPlugin: null})34];3536module.exports = DefaultEventPluginOrder;373839