var MJ = MJ || {};

MJ.Views = MJ.Views || {};

/**
 * View for the search input
 *
 * @constructor
 */
MJ.Views.Page = function (controller, elements) {
    this.controller = controller;
    this.rootNode = elements.rootNode;
    this.enableJSStyles();
};

MJ.Views.Page.prototype.enableJSStyles = function () {
    this.rootNode.addClass('hasJS');
};
