diff --git a/.idea/.name b/.idea/.name
new file mode 100644
index 0000000..651aa7c
--- /dev/null
+++ b/.idea/.name
@@ -0,0 +1 @@
+Triangle_Game
\ No newline at end of file
diff --git a/.idea/compiler.xml b/.idea/compiler.xml
new file mode 100644
index 0000000..217af47
--- /dev/null
+++ b/.idea/compiler.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/.idea/copyright/profiles_settings.xml b/.idea/copyright/profiles_settings.xml
new file mode 100644
index 0000000..e7bedf3
--- /dev/null
+++ b/.idea/copyright/profiles_settings.xml
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/.idea/encodings.xml b/.idea/encodings.xml
new file mode 100644
index 0000000..e206d70
--- /dev/null
+++ b/.idea/encodings.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 0000000..a4c378f
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+ 1.7
+
+
+
+
+
+
+
+
+
diff --git a/.idea/modules.xml b/.idea/modules.xml
new file mode 100644
index 0000000..a9aecfb
--- /dev/null
+++ b/.idea/modules.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/.idea/scopes/scope_settings.xml b/.idea/scopes/scope_settings.xml
new file mode 100644
index 0000000..922003b
--- /dev/null
+++ b/.idea/scopes/scope_settings.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000..275077f
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/Gruntfile.js b/Gruntfile.js
new file mode 100644
index 0000000..b31161e
--- /dev/null
+++ b/Gruntfile.js
@@ -0,0 +1,32 @@
+module.exports = function(grunt) {
+
+ // 1. All configuration goes here
+ grunt.initConfig({
+ pkg: grunt.file.readJSON('package.json'),
+
+ uglify: {
+ options: {
+ mangle: false, compress: false
+ //, beautify: true
+ },
+ min: {
+ files: [
+ {
+ src: "js/*.js",
+ dest: "js/build/production.min.js"
+ }
+ ]
+ }
+ },
+
+ });
+
+ // 3. Where we tell Grunt we plan to use this plug-in.
+ //grunt.loadNpmTasks('grunt-contrib-concat');
+ grunt.loadNpmTasks('grunt-contrib-uglify');
+ // 4. Where we tell Grunt what to do when we type "grunt" into the terminal.
+ grunt.registerTask('default', ['uglify']);
+
+ grunt.task.run('uglify');
+};
+
diff --git a/Triangle_Game.iml b/Triangle_Game.iml
new file mode 100644
index 0000000..284429d
--- /dev/null
+++ b/Triangle_Game.iml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/index.html b/index.html
index 58143c2..d99bb6b 100755
--- a/index.html
+++ b/index.html
@@ -2,20 +2,19 @@
-
-
-
-
-
-
-
-
-
+
@@ -34,9 +33,11 @@
Message
-
-
-
-
+
+
+
+
+
+