New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

nodebb-theme-harmony

Package Overview
Dependencies
Maintainers
0
Versions
488
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 2.0.24 to 2.0.25

2

package.json
{
"name": "nodebb-theme-harmony",
"version": "2.0.24",
"version": "2.0.25",
"nbbpm": {

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

@@ -66,2 +66,3 @@ 'use strict';

const bottomBar = $('[component="bottombar"]');
let stickyTools = null;
const location = config.theme.topMobilebar ? 'top' : 'bottom';

@@ -98,4 +99,4 @@ const $body = $('body');

});
if (config.theme.topMobilebar && config.theme.autohideBottombar) {
$('.sticky-tools').css({
if (stickyTools && config.theme.topMobilebar && config.theme.autohideBottombar) {
stickyTools.css({
top: isHiding ? 0 : 'var(--panel-offset)',

@@ -126,2 +127,4 @@ });

hooks.on('action:ajaxify.end', function () {
const { template } = ajaxify.data;
stickyTools = (template.category || template.topic) ? $('.sticky-tools') : null;
$window.off('scroll', delayedScroll);

@@ -128,0 +131,0 @@ if (config.theme.autohideBottombar) {

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