index.js 301 Bytes
(function () {
    "use strict";
    // 首页控制器
    var indexController = function ($scope) {
        //每个导航对应的图标的高亮
        $scope.$emit('navShow', 1);
    };
    angular.module("xn.page", [])
        .controller("IndexController", ["$scope", indexController]);

})();