index.js 179 Bytes
(function () {
    "use strict";
    angular.module("xn.page", [])
    .controller("IndexController",["$scope", function($scope) {
        $scope.$emit('navShow',1);
    }])
})();