controller.js
297 Bytes
'use strict';
import {
Controller
} from 'js/yoho-mvc';
require('yoho-jquery');
const lazyLoad = require('yoho-jquery-lazyload');
class SimilarController extends Controller {
constructor() {
super();
lazyLoad($('img.lazy'));
}
}
module.exports = SimilarController;