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

adaptivejs

Package Overview
Dependencies
Maintainers
4
Versions
94
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

adaptivejs - npm Package Compare versions

Comparing version 2.1.0-beta3 to 2.1.0-beta4

.idea/.name

2

package.json
{
"name": "adaptivejs",
"version": "2.1.0-beta3",
"version": "2.1.0-beta4",
"description": "A framework for creating adaptive websites.",

@@ -5,0 +5,0 @@ "author": {

@@ -21,2 +21,3 @@ define([

} catch (e) {
console.error('Error adding log data to local storage:\n' + e);
return;

@@ -78,3 +79,12 @@ }

Logger.clearData = function() {
localStorage.removeItem(TIMING_POINTS);
if (!Utils.supportsLocalStorage()) {
return;
}
try {
localStorage.removeItem(TIMING_POINTS);
} catch (e) {
console.error('Error removing log data from local storage:\n' + e);
return;
}
};

@@ -81,0 +91,0 @@

@@ -12,3 +12,6 @@ define(['adaptivejs/utils/general'], function(adaptiveUtils) {

cachedBuildScript = libs.mobify ? libs.mobify : libs.adaptation;
// In 2.0 and greater, the assumption is that the project uses
// a boot loader which is loaded by the Mobify tag. This boot
// loader always injects a build script named 'adaptation'
cachedBuildScript = libs.adaptation;
}

@@ -15,0 +18,0 @@

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