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

@jupyterlab/application-extension

Package Overview
Dependencies
Maintainers
9
Versions
394
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jupyterlab/application-extension - npm Package Compare versions

Comparing version 0.17.1 to 0.17.2

19

lib/index.js

@@ -229,5 +229,18 @@ "use strict";

app.busySignal.connect((_, isBusy) => {
const filename = isBusy ? 'favicon-busy-1.ico' : 'favicon.ico';
const favicon = document.querySelector('link[rel="shortcut icon"]');
favicon.href = `/static/base/images/${filename}`;
const favicon = document.querySelector(`link[rel="icon"]${isBusy ? '.idle.favicon' : '.busy.favicon'}`);
if (!favicon) {
return;
}
const newFavicon = document.querySelector(`link${isBusy ? '.busy.favicon' : '.idle.favicon'}`);
if (!newFavicon) {
return;
}
// If we have the two icons with the special classes, then toggle them.
if (favicon !== newFavicon) {
favicon.rel = '';
newFavicon.rel = 'icon';
// Firefox doesn't seem to recognize just changing rel, so we also
// reinsert the link into the DOM.
newFavicon.parentNode.replaceChild(newFavicon, newFavicon);
}
});

@@ -234,0 +247,0 @@ }),

2

package.json
{
"name": "@jupyterlab/application-extension",
"version": "0.17.1",
"version": "0.17.2",
"description": "JupyterLab - Application Extension",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/jupyterlab/jupyterlab",

Sorry, the diff of this file is not supported yet

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