added web interface (WIP)

This commit is contained in:
2015-10-01 00:27:15 +02:00
parent cde2a37afe
commit fe563e32ee
35 changed files with 1660 additions and 0 deletions

24
websrc/.jshintrc Normal file
View File

@@ -0,0 +1,24 @@
{
"node": true,
"browser": true,
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 2,
"latedef": true,
"noarg": true,
"quotmark": "single",
"undef": true,
"unused": true,
"newcap": false,
"globals": {
"wrap": true,
"unwrap": true,
"Polymer": true,
"Platform": true,
"page": true,
"app": true
}
}