﻿"use strict";

// home controller
app.controller("homeController", ["$rootScope", "$scope", "judgeRulesService", function ($rootScope, $scope, judgeRulesService) {
    $scope.init = function () {
        $rootScope.isDetailsView = false;
    };

    $scope.init();
}]);