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
##################################################################################################### | |
### WARNING: not kept up to date. I don't know the format well, and comments were causing issues. ### | |
### See next file for up-to-date mappings. ### | |
##################################################################################################### | |
{ | |
// Keybindings to emulate Fastmail shortcuts in MailMate | |
// From: http://fastmail.wikia.com/wiki/KeyboardShortcuts | |
// Created by Jeffrey Horn <[email protected]> | |
// See: http://manual.mailmate-app.com/key_binding_selectors |
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
<!doctype html> | |
<html> | |
<head> | |
<script src="http://code.jquery.com/jquery-latest.min.js"></script> | |
<script src="client/socket.io.js" type="text/javascript" charset="utf-8"></script> | |
<script type="text/javascript" charset="utf-8"> | |
var socket = new io.Socket(null, {rememberTransport: false, port: 8080}); | |
socket.connect(); | |
socket.addEvent('message', function(data) { | |
$('body').append('<p>' + $.map(data, function(e,i) { |