Guest User

Untitled

a guest
Jul 17th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. Product.Config.prototype.updateProductShortDescription = function(productId) {
  2. var shortDescription = this.config.shortDescription;
  3. if (productId && this.config.childProducts[productId].shortDescription) {
  4. shortDescription = this.config.childProducts[productId].shortDescription;
  5. }
  6. $$('#product_addtocart_form div.short-description div.std').each(function(el) {
  7. el.innerHTML = shortDescription;
  8. });
  9. };
Add Comment
Please, Sign In to add comment