-
Notifications
You must be signed in to change notification settings - Fork 408
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
29 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
lib-cov | ||
*.seed | ||
*.log | ||
*.csv | ||
*.dat | ||
*.out | ||
*.pid | ||
*.gz | ||
|
||
pids | ||
logs | ||
results | ||
build | ||
|
||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
<!DOCTYPE HTML> | ||
<html> | ||
<head> | ||
<title>Simple Chat</title> | ||
<link rel="stylesheet" type="text/css" href="style.css"> | ||
<title>HiChat</title> | ||
<link rel="stylesheet" type="text/css" href="style/app.css"> | ||
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon"> | ||
<link rel="icon" href="img/favicon.ico" type="image/x-icon"> | ||
<script type="text/javascript" src="/socket.io/socket.io.js"></script> | ||
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script> | ||
<script type="text/javascript" src="chat.js"></script> | ||
<script type="text/javascript" src="js/hichat.js"></script> | ||
</head> | ||
<body> | ||
<div id="wrapper"> | ||
<h1>Simple Chat</h1> | ||
<h1>HiChat</h1> | ||
<div id="messages"></div> | ||
<div class="nic"> | ||
Your Name | ||
|
@@ -18,10 +20,11 @@ <h1>Simple Chat</h1> | |
<textarea id="message"></textarea> | ||
<input id="send" type="submit" value="Send"/> | ||
</div> | ||
<footer>Wayou-a web programmer who has free time | <a href="mailto:[email protected]" target="_blank">[email protected]</a></footer> | ||
<script type="text/javascript"> | ||
$(document).ready(function() { | ||
// Chat.initialize('http://localhost/'); | ||
Chat.initialize('http://hichat.herokuapp.com/'); | ||
hiChat.initialize('http://localhost/');//for localhost test | ||
//hiChat.initialize('http://hichat.herokuapp.com/');//for publish | ||
}); | ||
</script> | ||
</body> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.