I want to change the product double click event on the product image to single click to enlarge the Image.

link|improve this question
3  
I want this too. – WTP'-- Mar 22 '11 at 20:11
feedback

1 Answer

up vote 2 down vote accepted

Go to:

/js/varien/product.js

Change

Event.observe(this.imageEl, 'dblclick', this.toggleFull.bind(this));

to

Event.observe(this.imageEl, 'click', this.toggleFull.bind(this));
link|improve this answer
No way. Too easy for a Magento fix! (+1) – Nic Mar 22 '11 at 20:29
Big thanks to you buddy.. – amit Mar 22 '11 at 20:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.