Commit 5940342f by Ned Batchelder Committed by GitHub

Merge pull request #16180 from caesar2164/shopping-cart-style-fixes

Fix Shopping-cart CSS and JS
parents 9f3f3a50 c0fd667b
......@@ -579,7 +579,6 @@ $light-border: 1px solid $gray-l5;
opacity: 0.8;
box-shadow: none;
border: none;
background: none;
width: auto;
height: auto;
text-shadow: none;
......
......@@ -409,8 +409,8 @@ from openedx.core.lib.courses import course_image_url
var oldId = data['oldToNewIdMap'][i]['oldId'];
var newId = data['oldToNewIdMap'][i]['newId'];
$('input.spin-counter[data-item-id]=' + oldId ).data('item-id', newId);
$('button.btn-remove[data-item-id]=' + oldId ).data('item-id', newId);
$("input.spin-counter[data-item-id='" + oldId + "']").data('item-id', newId);
$("button.btn-remove[data-item-id='" + oldId + "']").data('item-id', newId);
}
if(isbusinessType){
$( "div[name='payment']").addClass('hidden');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment