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

nodebb-theme-harmony

Package Overview
Dependencies
Maintainers
0
Versions
437
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nodebb-theme-harmony - npm Package Compare versions

Comparing version 1.2.75 to 1.2.76

2

package.json
{
"name": "nodebb-theme-harmony",
"version": "1.2.75",
"version": "1.2.76",
"nbbpm": {

@@ -5,0 +5,0 @@ "compatibility": "^3.7.0"

@@ -263,7 +263,10 @@ 'use strict';

if (count > 1) {
const placeholder = $(`nav.sidebar [component="${type}/list"]`).children().first();
for (let x = 0; x < count - 1; x++) {
const cloneEl = placeholder.clone(true);
cloneEl.insertAfter(placeholder);
}
const listEls = $(`.dropdown-menu [component="${type}/list"]`);
listEls.each((index, el) => {
const placeholder = $(el).children().first();
for (let x = 0; x < count - 1; x++) {
const cloneEl = placeholder.clone(true);
cloneEl.insertAfter(placeholder);
}
});
}

@@ -270,0 +273,0 @@ });

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