Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

mofron-comp-appbase

Package Overview
Dependencies
Maintainers
1
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mofron-comp-appbase - npm Package Compare versions

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 */

2

package.json
{
"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",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc