Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Naming conventions
Browse files Browse the repository at this point in the history
  • Loading branch information
erikjohnston committed Jul 14, 2015
1 parent d1a3bc7 commit 0c4f302
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion skins/base/views/atoms/create_room/Presets.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ module.exports = React.createClass({

render: function() {
return (
<select className="mx_PresetOption" onChange={this.onValueChanged} defaultValue={this.state.preset}>
<select className="mx_Presets" onChange={this.onValueChanged} defaultValue={this.state.preset}>
<option value="private_chat">Private Chat</option>
<option value="public_chat">Public Chat</option>
</select>
Expand Down
2 changes: 1 addition & 1 deletion skins/base/views/atoms/create_room/RoomNameTextbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ var React = require('react');
var RoomNameTextboxController = require("../../../../../src/controllers/atoms/create_room/RoomNameTextbox");

module.exports = React.createClass({
displayName: 'CreateRoomButton',
displayName: 'RoomNameTextbox',
mixins: [RoomNameTextboxController],

onValueChanged: function(ev) {
Expand Down

0 comments on commit 0c4f302

Please sign in to comment.