2
1
mirror of https://github.com/s00500/nodeMessageBoard.git synced 2025-07-03 19:50:19 +00:00

Added handlers and emojize for apple style sprite emoji

This commit is contained in:
2016-03-15 10:42:21 +01:00
parent 097faef1a5
commit 4aeef6c8db
8 changed files with 5230 additions and 2 deletions

2
app.js
View File

@ -7,5 +7,7 @@ var debug = false;
var handle = {}
handle["/"] = requestHandlers.sendInterface;
handle["/interface"] = requestHandlers.sendInterface;
handle["/sprite/emoji.css"] = requestHandlers.sendCss;
handle["/sprite/emoji.png"] = requestHandlers.sendPng;
server.start(router.route,handle,debug);