From ca1a67f78f7de40a7956c69e41f4ddae2542f4f2 Mon Sep 17 00:00:00 2001
From: Sunil Shetye
Date: Mon, 2 Jul 2018 22:51:03 +0530
Subject: add options block

---
 js/Linear/DIFF_c.js | 5 +++++
 1 file changed, 5 insertions(+)

(limited to 'js/Linear/DIFF_c.js')

diff --git a/js/Linear/DIFF_c.js b/js/Linear/DIFF_c.js
index 41fed9aa..55f81ca7 100644
--- a/js/Linear/DIFF_c.js
+++ b/js/Linear/DIFF_c.js
@@ -18,6 +18,11 @@ function DIFF_c() {
         return this.x;
     }
     DIFF_c.prototype.get = function DIFF_c() {
+        var options = {
+            x0:["Initial state",this.x0],
+            xd0:["Initial Derivative",this.xd0],
+        }
+        return options;
     }
     DIFF_c.prototype.set = function DIFF_c() {
         this.x0 = parseFloat((arguments[0]["x0"]))
-- 
cgit