Use placeholder images for item groups

This commit is contained in:
Andrew Miner
2015-02-23 20:17:20 -08:00
parent aa6bdacf90
commit 963147104a
3 changed files with 18 additions and 5 deletions
+4 -1
View File
@@ -41,7 +41,10 @@ app.get '*', (request, response)->
console.log ">>> #{request.path}"
response.set 'Content-Type', contentType
response.sendFile request.path, root:ROOT
sendFile = -> response.sendFile request.path, root:ROOT
setTimeout sendFile, 100 # change the zero to post files after a short delay
server = app.listen 8000, ->
console.log "listening at: #{server.address().address}:#{server.address().port}"