sweetp/dashboard

View on GitHub
app/scripts/dashboardApp/views/main/main.ctrl.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';

angular.module('dashboardApp')
    .controller('MainCtrl', function($scope, $location) {
    /**
     * Go to a location.
     *
     * @param {String} to go to
     */
    $scope.go = function(to) {
        $location.path(to);
    };
});