diff --git a/.gitignore b/.gitignore
index db8d2c4..277dd4b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,6 +4,7 @@
*.iml
+/dist
## Directory-based project format:
.idea/
# if you remove the above rule, at least ignore the following:
diff --git a/.jshintrc b/.jshintrc
new file mode 100644
index 0000000..7fddfde
--- /dev/null
+++ b/.jshintrc
@@ -0,0 +1,30 @@
+{
+ "node": true,
+ "esnext": true,
+ "bitwise": true,
+ "camelcase": true,
+ "curly": true,
+ "eqeqeq": true,
+ "immed": true,
+ "indent": 2,
+ "latedef": true,
+ "newcap": true,
+ "noarg": true,
+ "quotmark": "single",
+ "regexp": true,
+ "undef": true,
+ "unused": true,
+ "strict": true,
+ "trailing": true,
+ "smarttabs": true,
+ "white": true,
+ "validthis": true,
+ "browser" : true,
+ "jquery":true,
+
+ "globals": {
+
+ "angular": false
+
+ }
+}
diff --git a/app/index.html b/app/index.html
index 775629e..1328e6e 100644
--- a/app/index.html
+++ b/app/index.html
@@ -7,8 +7,10 @@
+
+
@@ -58,6 +60,8 @@