uikit
Version:
UIkit is a lightweight and modular front-end framework for developing fast and powerful web interfaces.
20 lines (16 loc) • 451 B
JavaScript
export default {
update: {
write() {
if (this.stack.length || this.dragging || this.parallax) {
return;
}
const index = this.getValidIndex();
if (!~this.prevIndex || this.index !== index) {
this.show(index);
} else {
this._translate(1, this.prevIndex, this.index);
}
},
events: ['resize'],
},
};