Edited fallback route to use all methods in fallback

This commit is contained in:
Michael Schmatz 2014-03-12 10:07:18 -07:00
parent 49ab47e3fe
commit 6563f43511

View file

@ -84,7 +84,7 @@ exports.setupMiddleware = (app) ->
###Routing function implementations###
setupFallbackRouteToIndex = (app) ->
app.get '*', (req, res) ->
app.all '*', (req, res) ->
res.sendfile path.join(__dirname, 'public', 'index.html')
setupFacebookCrossDomainCommunicationRoute = (app) ->