From 7465daea85285ba7f291b6bf6ddc45caa9e7ad65 Mon Sep 17 00:00:00 2001
From: Sunil Shetye
Date: Mon, 25 Jun 2018 18:20:39 +0530
Subject: add spacing to end of block also

---
 js/Linear/DERIV.js | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

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

diff --git a/js/Linear/DERIV.js b/js/Linear/DERIV.js
index a3b0b8dc..d8b77628 100644
--- a/js/Linear/DERIV.js
+++ b/js/Linear/DERIV.js
@@ -9,13 +9,14 @@ function DERIV() {
         model.dep_ut = [true,false];
         exprs = [];
         gr_i = [];
-        x = standard_define([2,2],model,exprs,gr_i);
+        this.x = standard_define([2,2],model,exprs,gr_i);
     }
     DERIV.prototype.details = function DERIV() {
+        return this.x;
     }
     DERIV.prototype.get = function DERIV() {
     }
     DERIV.prototype.set = function DERIV() {
-        x = arg1;
+        this.x = arg1;
     }
 }
-- 
cgit