Error "Can not set property 'checked' of undefined"

1

In the store here is giving an error in prototype:

Uncaught TypeError: Cannot set property 'checked' of undefined
at klass.<anonymous> (product.js:128)
at prototype.js:391
at prototype.js:825
at klass._each (prototype.js:1237)
at klass.each (prototype.js:824)
at klass.updateImages (product.js:125)
at klass.initialize (product.js:55)
at klass (prototype.js:101)
at (index):1205

And in the code with error, this appears:

var $break = {};
var Enumerable = (function() {
      function each(iterator, context) {
        var index = 0;
        try {
          this._each(function(value) {
            iterator.call(context, value, index++);
          });
        } catch (e) {
          if (e != $break) throw e;
        }
        return this;
      }

    
asked by anonymous 23.03.2017 / 15:26

0 answers