Current Directory: /home/astoriaah/www/templates/yootheme/vendor/assets/uikit/src/js/core
Viewing File: /home/astoriaah/www/templates/yootheme/vendor/assets/uikit/src/js/core/gif.js
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;
},
events: ['scroll', 'load', 'resize']
}
};