From f35fd7111a7faa422110e9342369bcd168c93c16 Mon Sep 17 00:00:00 2001
From: amandaghassaei <amandaghassaei@gmail.com>
Date: Thu, 4 May 2017 18:01:36 -0400
Subject: [PATCH] small changes

---
 index.html     | 14 ++++++++++++++
 js/controls.js |  3 +++
 js/globals.js  |  2 +-
 3 files changed, 18 insertions(+), 1 deletion(-)

diff --git a/index.html b/index.html
index f59267a..1a61804 100644
--- a/index.html
+++ b/index.html
@@ -673,5 +673,19 @@
         </div><!-- /.modal-content -->
     </div><!-- /.modal-dialog -->
 </div><!-- /.modal -->
+<div class="modal fade" id="aboutAxialStrainModal" tabindex="-1" role="dialog">
+    <div class="modal-dialog modal-med">
+        <div class="modal-content">
+            <div class="modal-body">
+                <button type="button" class="close" data-dismiss="modal" aria-label="Close">
+                  <span aria-hidden="true">&times;</span>
+                </button>
+                <p><b>Axial Strain</b><br/><br/>
+                    ....
+                </p>
+            </div>
+        </div><!-- /.modal-content -->
+    </div><!-- /.modal-dialog -->
+</div><!-- /.modal -->
 </body>
 </html>
\ No newline at end of file
diff --git a/js/controls.js b/js/controls.js
index 1857029..b52f925 100644
--- a/js/controls.js
+++ b/js/controls.js
@@ -405,6 +405,9 @@ function initControls(globals){
     setLink("#aboutStaticSim", function(){
         $("#aboutStaticSimModal").modal("show");
     });
+    setLink("#aboutAxialStrain", function(){
+        $("#aboutAxialStrainModal").modal("show");
+    });
 
     function setButtonGroup(id, callback){
         $(id+" a").click(function(e){
diff --git a/js/globals.js b/js/globals.js
index a589273..67c6508 100644
--- a/js/globals.js
+++ b/js/globals.js
@@ -10,7 +10,7 @@ function initGlobals(){
         navMode: "simulation",
 
         //view
-        colorMode: "normal",
+        colorMode: "color",
         color1: "ec008b",
         color2: "dddddd",
         edgesVisible: true,
-- 
GitLab