Magento 1.9 - TypeError: this.toggleElements.toggleSingle is not a function
Solution
The solution is simple, Just copy the below code.
match: function () { if(this.toggleElements.length > 0){ this.toggleElements.toggleSingle(); } }, unmatch: function () { if(this.toggleElements.length > 0){ this.toggleElements.toggleSingle({destruct: true}); } }
EmoticonEmoticon