uikit
Version:
UIkit is a lightweight and modular front-end framework for developing fast and powerful web interfaces.
27 lines (17 loc) • 447 B
JavaScript
import {isInView} from 'uikit-util';
// Deprecated
export default {
update: {
read(data) {
const inview = isInView(this.$el);
if (!inview || data.isInView === inview) {
return false;
}
data.isInView = inview;
},
write() {
this.$el.src = '' + this.$el.src; // force self-assign
},
events: ['scroll', 'resize']
}
};