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

caleres-virtual-cart

Package Overview
Dependencies
Maintainers
4
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

caleres-virtual-cart - npm Package Compare versions

Comparing version 0.2.6 to 0.3.0

0

components/jquery-zoom-extend.js

@@ -0,0 +0,0 @@ (function($){

10

index.js

@@ -64,4 +64,12 @@ /* DEFINE GLOBAL VIRTUALCARTMODAL OBJECT --- */

var variantId = $sizeEl.val();
var isStorePickup = false;
// Try and select the bopis radio button selected, if it doesn't exist then it is a non-bopis site and will always be false.
var $bopisRadioEl = $('#delivery-option-available-in-store');
if(typeof($bopisRadioEl) !== 'undefined' && $bopisRadioEl.prop('checked')) {
isStorePickup = true;
}
if (!/.*-.*-.*/.test(variantId) && s.products.split(';').length > 1) variantId = s.products.split(';')[1] + '-' + variantId;
$.post('/Checkout/Cart/AddItem', { VariantId: variantId })
$.post('/Checkout/Cart/AddItem', { VariantId: variantId, IsStorePickup: isStorePickup })
.done(function (data) {

@@ -68,0 +76,0 @@ /* UPDATE MODALS WITH NEW CONTENT --- */

2

package.json
{
"name": "caleres-virtual-cart",
"version": "0.2.6",
"version": "0.3.0",
"description": "The functional parts for caleres-virtual-cart",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -0,0 +0,0 @@ Caleres Virtual Cart

@@ -0,0 +0,0 @@ module.exports = [

Sorry, the diff of this file is not supported yet

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