├── .gitignore ├── LICENSE ├── MMM-Admin-Interface.js ├── README.md ├── index.html ├── index.js ├── node_helper.js ├── package.json ├── public └── jsoneditor.js └── schema.default.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItayXD/MMM-Admin-Interface/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItayXD/MMM-Admin-Interface/HEAD/LICENSE -------------------------------------------------------------------------------- /MMM-Admin-Interface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItayXD/MMM-Admin-Interface/HEAD/MMM-Admin-Interface.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItayXD/MMM-Admin-Interface/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItayXD/MMM-Admin-Interface/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItayXD/MMM-Admin-Interface/HEAD/index.js -------------------------------------------------------------------------------- /node_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItayXD/MMM-Admin-Interface/HEAD/node_helper.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItayXD/MMM-Admin-Interface/HEAD/package.json -------------------------------------------------------------------------------- /public/jsoneditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItayXD/MMM-Admin-Interface/HEAD/public/jsoneditor.js -------------------------------------------------------------------------------- /schema.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItayXD/MMM-Admin-Interface/HEAD/schema.default.json --------------------------------------------------------------------------------