Closed marginTop closed 8 years ago
iSliderPrototype.on = function (eventName, func, force) { if (inArray(eventName, iSlider.EVENTS) && typeof func === 'function') { !(eventName in this.events) && (this.events[eventName] = []); if (!force) { this.events[eventName].push(func); } else { this.events[eventName].unshift(func); } } // 平时写on的时候连着写会爽一点 return this; };
修改了个错别字
修改了个错别字