diff --git a/src/core/ReactDefaultInjection.js b/src/core/ReactDefaultInjection.js index 8dd413c8ba..bd1b12ca32 100644 --- a/src/core/ReactDefaultInjection.js +++ b/src/core/ReactDefaultInjection.js @@ -21,6 +21,8 @@ var ReactDOM = require('ReactDOM'); var ReactDOMForm = require('ReactDOMForm'); var ReactDOMInput = require('ReactDOMInput'); +var ReactDOMOption = require('ReactDOMOption'); +var ReactDOMSelect = require('ReactDOMSelect'); var ReactDOMTextarea = require('ReactDOMTextarea'); var DefaultDOMPropertyConfig = require('DefaultDOMPropertyConfig'); @@ -53,6 +55,8 @@ function inject() { ReactDOM.injection.injectComponentClasses({ form: ReactDOMForm, input: ReactDOMInput, + option: ReactDOMOption, + select: ReactDOMSelect, textarea: ReactDOMTextarea }); diff --git a/src/dom/components/ReactDOMOption.js b/src/dom/components/ReactDOMOption.js new file mode 100644 index 0000000000..8420c98787 --- /dev/null +++ b/src/dom/components/ReactDOMOption.js @@ -0,0 +1,50 @@ +/** + * Copyright 2013 Facebook, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * @providesModule ReactDOMOption + */ + +"use strict"; + +var ReactCompositeComponent = require('ReactCompositeComponent'); +var ReactDOM = require('ReactDOM'); + +// Store a reference to the