mofron-comp-appbase
Advanced tools
Comparing version 0.4.5 to 0.4.6
14
index.js
@@ -130,7 +130,3 @@ /** | ||
new Backgd(), | ||
new Synwin({ | ||
xflag : false, | ||
yflag : true, | ||
yofs : '-' + this.header().height() | ||
}) | ||
new Synwin([false, true], [0, '-' + this.header().height()]) | ||
] | ||
@@ -154,7 +150,3 @@ }); | ||
); | ||
if (0 > set_hei.value()) { | ||
super.height(prm); | ||
} else { | ||
super.height(set_hei); | ||
} | ||
super.height((0 > set_hei.value()) ? prm : set_hei); | ||
} catch (e) { | ||
@@ -200,3 +192,3 @@ console.error(e.stack); | ||
} | ||
this.background().execOption({ baseColor : prm }); | ||
this.background().option({ baseColor : prm }); | ||
} catch (e) { | ||
@@ -203,0 +195,0 @@ console.error(e.stack); |
{ | ||
"name": "mofron-comp-appbase", | ||
"version": "0.4.5", | ||
"version": "0.4.6", | ||
"description": "application base component for mofron", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
8232
185