Skip to content
This repository has been archived by the owner on Jul 20, 2023. It is now read-only.

Commit

Permalink
lowercase all files
Browse files Browse the repository at this point in the history
  • Loading branch information
idoco committed Jan 19, 2017
1 parent 646bbbf commit b8f1507
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/chat/chatIndex.js → src/chat/chat-index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { h, render } from 'preact';
import Chat from './Chat';
import Chat from './chat';

const userId = Math.random().toString(36).substr(2, 5); // 5 random chars
const chatId = getUrlParameter('id');
Expand Down
2 changes: 1 addition & 1 deletion src/chat/Chat.js → src/chat/chat.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { h, Component } from 'preact';
import MessageArea from './MessageArea';
import MessageArea from './message-area';
import io from 'socket.io-client'

export default class Chat extends Component {
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/widget/widgetIndex.js → src/widget/widget-index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { h, render } from 'preact';
import Widget from './Widget';
import Widget from './widget';

if (window.attachEvent) {
window.attachEvent('onload', injectChat);
Expand Down
2 changes: 1 addition & 1 deletion src/widget/Widget.js → src/widget/widget.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { h, Component } from 'preact';
import ChatFrame from './ChatFrame';
import ChatFrame from './chat-frame';

const wrapperStyle = {
position: 'fixed',
Expand Down
4 changes: 2 additions & 2 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ module.exports = {
devtool: 'source-map',
entry: {
widget: [
path.join(__dirname, 'src', 'widget', 'widgetIndex.js')
path.join(__dirname, 'src', 'widget', 'widget-index.js')
],
chat: [
path.join(__dirname, 'src', 'chat', 'chatIndex.js')
path.join(__dirname, 'src', 'chat', 'chat-index.js')
],
},
output: {
Expand Down

0 comments on commit b8f1507

Please sign in to comment.