Erste Funktionalität der Menükarte per GET/POST, keine API; Umstrukturierung der Tabelle als Bootstrap-div; HTML/CSS-Cleanup

This commit is contained in:
Sebastian Seedorf
2016-03-25 13:33:42 +01:00
parent 92a5ff8eda
commit f99271ee01
202 changed files with 25173 additions and 853 deletions

6
node_modules/lazy-cache/README.md generated vendored
View File

@@ -2,6 +2,8 @@
> Cache requires to be lazy-loaded when needed.
If you use webpack and are experiencing issues, try using [unlazy-loader](https://github.com/doowb/unlazy-loader), a webpack loader that fixes the bug that prevents webpack from working with native javascript getters.
## Install
Install with [npm](https://www.npmjs.com/)
@@ -87,7 +89,7 @@ utils.glob('*.js', function (err, files) {
## Kill switch
In certain rare edge cases, it may be necessary to unlazy all lazy-cached dependencies (two reported cases out of > 9 million downloads).
In certain rare edge cases it may be necessary to unlazy all lazy-cached dependencies (5 reported cases out of > 11 million downloads).
To force lazy-cache to immediately invoke all dependencies, do:
@@ -125,4 +127,4 @@ Released under the MIT license.
***
_This file was generated by [verb](https://github.com/verbose/verb) on December 09, 2015._
_This file was generated by [verb](https://github.com/verbose/verb) on December 20, 2015._

2
node_modules/lazy-cache/index.js generated vendored
View File

@@ -22,7 +22,7 @@ function lazyCache(fn) {
name = name || camelcase(mod);
// check both boolean and string in case `process.env` cases to string
if (process.env.UNLAZY === 'true' || process.env.UNLAZY === true) {
if (process.env.UNLAZY === 'true' || process.env.UNLAZY === true || process.env.TRAVIS) {
cache[name] = fn(mod);
}

40
node_modules/lazy-cache/package.json generated vendored
View File

@@ -1,38 +1,38 @@
{
"_args": [
[
"lazy-cache@^0.2.4",
"C:\\Users\\IT-134\\Desktop\\PortableGit\\repos\\html5-restaurant\\node_modules\\center-align"
"lazy-cache@^1.0.3",
"L:\\Git\\repos\\html5-restaurant\\node_modules\\center-align"
]
],
"_from": "lazy-cache@>=0.2.4 <0.3.0",
"_id": "lazy-cache@0.2.7",
"_from": "lazy-cache@>=1.0.3 <2.0.0",
"_id": "lazy-cache@1.0.3",
"_inCache": true,
"_installable": true,
"_location": "/lazy-cache",
"_nodeVersion": "5.1.1",
"_nodeVersion": "5.0.0",
"_npmUser": {
"email": "brian.woodward@gmail.com",
"name": "doowb"
"email": "github@sellside.com",
"name": "jonschlinkert"
},
"_npmVersion": "3.5.1",
"_npmVersion": "3.3.6",
"_phantomChildren": {},
"_requested": {
"name": "lazy-cache",
"raw": "lazy-cache@^0.2.4",
"rawSpec": "^0.2.4",
"raw": "lazy-cache@^1.0.3",
"rawSpec": "^1.0.3",
"scope": null,
"spec": ">=0.2.4 <0.3.0",
"spec": ">=1.0.3 <2.0.0",
"type": "range"
},
"_requiredBy": [
"/center-align"
],
"_resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-0.2.7.tgz",
"_shasum": "7feddf2dcb6edb77d11ef1d117ab5ffdf0ab1b65",
"_resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.3.tgz",
"_shasum": "e97754618f9c886bb999b2ff69c78b82453d6674",
"_shrinkwrap": null,
"_spec": "lazy-cache@^0.2.4",
"_where": "C:\\Users\\IT-134\\Desktop\\PortableGit\\repos\\html5-restaurant\\node_modules\\center-align",
"_spec": "lazy-cache@^1.0.3",
"_where": "L:\\Git\\repos\\html5-restaurant\\node_modules\\center-align",
"author": {
"name": "Jon Schlinkert",
"url": "https://github.com/jonschlinkert"
@@ -44,13 +44,13 @@
"description": "Cache requires to be lazy-loaded when needed.",
"devDependencies": {
"ansi-yellow": "^0.1.1",
"glob": "^5.0.14",
"glob": "^6.0.1",
"mocha": "*"
},
"directories": {},
"dist": {
"shasum": "7feddf2dcb6edb77d11ef1d117ab5ffdf0ab1b65",
"tarball": "http://registry.npmjs.org/lazy-cache/-/lazy-cache-0.2.7.tgz"
"shasum": "e97754618f9c886bb999b2ff69c78b82453d6674",
"tarball": "http://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.3.tgz"
},
"engines": {
"node": ">=0.10.0"
@@ -58,7 +58,7 @@
"files": [
"index.js"
],
"gitHead": "1a7a6ce95ec946b19b4a23db706cfdd2de3468dd",
"gitHead": "06265aa4a6750aae03e1814fbb740dde6311fb2b",
"homepage": "https://github.com/jonschlinkert/lazy-cache",
"keywords": [
"cache",
@@ -101,5 +101,5 @@
]
}
},
"version": "0.2.7"
"version": "1.0.3"
}