Skip to content

Commit

Permalink
Merge pull request robrighter#24 from snaewe/sn/fix-typo
Browse files Browse the repository at this point in the history
fix typo reciever -> receiver
  • Loading branch information
robrighter committed May 26, 2012
2 parents 325676b + 4ac2873 commit ac39ae9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/js/script.js
Expand Up @@ -10,6 +10,6 @@ $(document).ready(function() {
});

socket.on('server_message', function(data){
$('#reciever').append('<li>' + data + '</li>');
$('#receiver').append('<li>' + data + '</li>');
});
});
2 changes: 1 addition & 1 deletion templates/views/index.jade
Expand Up @@ -3,4 +3,4 @@ extends layout
block content
div
a(id='sender')='Send a Message'
ul(id='reciever')
ul(id='receiver')

0 comments on commit ac39ae9

Please sign in to comment.