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/NonLinear/SINBLK_f.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'js/NonLinear/SINBLK_f.js') diff --git a/js/NonLinear/SINBLK_f.js b/js/NonLinear/SINBLK_f.js index 16a79b3e..f71f9ab2 100644 --- a/js/NonLinear/SINBLK_f.js +++ b/js/NonLinear/SINBLK_f.js @@ -9,13 +9,14 @@ function SINBLK_f() { 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); } SINBLK_f.prototype.details = function SINBLK_f() { + return this.x; } SINBLK_f.prototype.get = function SINBLK_f() { } SINBLK_f.prototype.set = function SINBLK_f() { - x = arg1; + this.x = arg1; } } -- cgit