disable manifest during development, set placeholder text

This commit is contained in:
Aaron Parecki 2015-05-10 14:14:35 +02:00
parent 2792d5150d
commit b92daf96f5
5 changed files with 18 additions and 11 deletions

View file

@ -33,9 +33,9 @@ $app->get('/editor/oembed', function() use($app) {
$app->response()->body($json);
});
$app->get('/appcache.manifest', function() use($app) {
$content = partial('partials/appcache');
// $app->get('/appcache.manifest', function() use($app) {
// $content = partial('partials/appcache');
$app->response()['Content-type'] = 'text/cache-manifest';
$app->response()->body($content);
});
// $app->response()['Content-type'] = 'text/cache-manifest';
// $app->response()->body($content);
// });