Socket
Socket
Sign inDemoInstall

@anywhichway/autohelm

Package Overview
Dependencies
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@anywhichway/autohelm - npm Package Compare versions

Comparing version 0.0.21 to 0.0.22

16

index.js

@@ -66,5 +66,5 @@ const toTOC = (dom,headings,toc,previousLevel,previousHeading) => {

toc.style.display = "none";
open.innerHTML = "+";
open.innerHTML = "▼";
open.style.display = "inline";
close.innerHTML = "-";
close.innerHTML = "▲";
close.style.display = "none";

@@ -74,10 +74,10 @@ tocEl.appendChild(open)

open.addEventListener("click",() => {
toc.display = "block";
open.display = "none";
close.display = "inline";
toc.style.display = "block";
open.style.display = "none";
close.style.display = "inline";
})
close.addEventListener("click",() => {
toc.display = "none";
open.display = "inline";
close.display = "none";
toc.style.display = "none";
open.style.display = "inline";
close.style.display = "none";
})

@@ -84,0 +84,0 @@ }

{
"name": "@anywhichway/autohelm",
"version": "0.0.21",
"version": "0.0.22",
"description": "A library to support standardized table of contents and footnote navigation in HTML files",

@@ -5,0 +5,0 @@ "type": "module",

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