Código Javascript:
Ver original
var Gauge = Base.extend({ init: function(id, startImgX, startImgY, fps, frames, rewind) { this._super(0, 0); this.view = $('#' + id); this.setSize(this.view.width(), this.view.height()); this.setImage(this.view.css('background-image'), startImgX, startImgY); this.setupFrames(fps, frames, rewind); }, });
No tengo ni idea de qué hace extend. Como se ve, usa JQuery, pero no sé si es algo de Javascript o del propio JQuery. Vi que extend() en JQuery es como mezclar el contenido de varios objetos en un objeto solamente, pero no entiendo que hace ni si es de javascript o de JQuery!
Un saludo!