mofron-comp-appbase
Advanced tools
Comparing version 0.1.1 to 0.1.2
18
index.js
@@ -32,3 +32,2 @@ /** | ||
try { | ||
this.name('AppBase'); | ||
super.initDomConts(); | ||
@@ -47,4 +46,9 @@ | ||
/* contents */ | ||
let conts = new mf.Component({height : hei}); | ||
let conts = new mf.Component({ | ||
style : { 'position' : 'relative', | ||
'z-index' : 10 }, | ||
height : hei | ||
}); | ||
this.addChild(conts); | ||
this.target(conts.target()); | ||
@@ -125,3 +129,11 @@ | ||
/* getter */ | ||
return this.child()[2].child(); | ||
let chd = this.child(); | ||
let ret = new Array(); | ||
for (let cidx in chd) { | ||
if (2 >= cidx) { | ||
continue; | ||
} | ||
ret.push(chd[cidx]); | ||
} | ||
return ret; | ||
} | ||
@@ -128,0 +140,0 @@ /* setter */ |
{ | ||
"name": "mofron-comp-appbase", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"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
7508
165