mofron-comp-appbase
Advanced tools
Comparing version 0.1.2 to 0.1.3
18
index.js
@@ -45,9 +45,4 @@ /** | ||
/* contents */ | ||
let conts = new mf.Component({ | ||
style : { 'position' : 'relative', | ||
'z-index' : 10 }, | ||
height : hei | ||
}); | ||
let conts = new mf.Component({height : hei}); | ||
this.addChild(conts); | ||
this.target(conts.target()); | ||
@@ -128,11 +123,3 @@ | ||
/* getter */ | ||
let chd = this.child(); | ||
let ret = new Array(); | ||
for (let cidx in chd) { | ||
if (2 >= cidx) { | ||
continue; | ||
} | ||
ret.push(chd[cidx]); | ||
} | ||
return ret; | ||
return this.child()[2].child(); | ||
} | ||
@@ -171,3 +158,2 @@ /* setter */ | ||
} | ||
/* setter */ | ||
/* set header color */ | ||
@@ -174,0 +160,0 @@ this.header().color(clr); |
{ | ||
"name": "mofron-comp-appbase", | ||
"version": "0.1.2", | ||
"version": "0.1.3", | ||
"description": "application base component for mofron", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
7102
152