Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# URL-Shortener
# LINK-Shortener

<a href="https://github.com/rishz/URL-Shortener/blob/master/LICENSE"><img src="https://img.shields.io/badge/License-MIT-red.svg" alt="license"/></a>

Expand Down
4 changes: 2 additions & 2 deletions server.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Created by rishabhshukla on 09/03/17.
* Created by Rishabhshukla on 09/03/17.
*/


Expand Down Expand Up @@ -46,4 +46,4 @@ app.listen(port, () => {

});

//console.log(shortner.shorten('http://google.com'));
console.log(shortner.shorten('http://google.com'));
2 changes: 1 addition & 1 deletion static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<script src="jquery.min.js"></script>
<script src="script.js"></script>

<title>URL Shortner</title>
<title>LINK Shortner</title>
</head>
<body>

Expand Down
1 change: 1 addition & 0 deletions static/style.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
*{
align: center;
background-color: hotpink;
}
#url{
align: center;
Expand Down