diff options
author | ASP1234 | 2016-07-12 13:11:47 +0000 |
---|---|---|
committer | ASP1234 | 2016-07-12 13:11:47 +0000 |
commit | 3714cecfa08eb24e9c1ef0c5dffe645317289f4a (patch) | |
tree | ec92a7f860fb4f8440cead4c23ce51c59d0d45d0 | |
parent | d73bd5edf60f2340f6d6a8d9471dd6140b2bf8f9 (diff) | |
download | xcos-on-web-3714cecfa08eb24e9c1ef0c5dffe645317289f4a.tar.gz xcos-on-web-3714cecfa08eb24e9c1ef0c5dffe645317289f4a.tar.bz2 xcos-on-web-3714cecfa08eb24e9c1ef0c5dffe645317289f4a.zip |
Mino Fix
-rw-r--r-- | dependencies.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/dependencies.js b/dependencies.js index 89363d1..436645e 100644 --- a/dependencies.js +++ b/dependencies.js @@ -1166,10 +1166,12 @@ function SuperBlock() { this.blockType = getData(options.model.blocktype)[0]; this.connectable = options.connectable; // Not Known var dep_ut = getData(options.model.dep_ut); - if (dep_ut[0] == "true") + if (dep_ut[0] == "true") { this.dependsOnU = "1"; - if (dep_ut[1] == "true") + } + if (dep_ut[1] == "true") { this.dependsOnT = "1"; + } this.id = options.id; this.interfaceFunctionName = arguments.callee.caller.name; this.ordering = options.ordering; |