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