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.2.0 to 0.2.1

13

index.js

@@ -165,5 +165,5 @@ /**

color (clr) {
color (clr, c2) {
try {
if (undefined === clr) {
if ((undefined === clr) && (undefined === c2)) {
/* getter */

@@ -174,3 +174,10 @@ return this.header().color();

/* set header color */
this.header().color(clr);
if (undefined !== clr) {
this.header().color(clr);
}
if (undefined !== c2) {
let bg = this.getChild(true)[1];
bg.width('100%');
bg.color(c2);
}
} catch (e) {

@@ -177,0 +184,0 @@ console.error(e.stack);

{
"name": "mofron-comp-appbase",
"version": "0.2.0",
"version": "0.2.1",
"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